Class: Google::Apis::ContainerV1::Cluster
- Inherits:
-
Object
- Object
- Google::Apis::ContainerV1::Cluster
- Defined in:
- generated/google/apis/container_v1/classes.rb,
generated/google/apis/container_v1/representations.rb,
generated/google/apis/container_v1/representations.rb
Overview
A Google Container Engine cluster.
Instance Attribute Summary collapse
-
#addons_config ⇒ Google::Apis::ContainerV1::AddonsConfig
Configuration for the addons that can be automatically spun up in the cluster, enabling additional functionality.
-
#cluster_ipv4_cidr ⇒ String
The IP address range of the container pods in this cluster, in CIDR notation (e.g.
10.96.0.0/14). -
#create_time ⇒ String
[Output only] The time the cluster was created, in RFC3339 text format.
-
#current_master_version ⇒ String
[Output only] The current software version of the master endpoint.
-
#current_node_count ⇒ Fixnum
[Output only] The number of nodes currently in the cluster.
-
#current_node_version ⇒ String
[Output only] The current version of the node software components.
-
#description ⇒ String
An optional description of this cluster.
-
#enable_kubernetes_alpha ⇒ Boolean
(also: #enable_kubernetes_alpha?)
Kubernetes alpha features are enabled on this cluster.
-
#endpoint ⇒ String
[Output only] The IP address of this cluster's master endpoint.
-
#expire_time ⇒ String
[Output only] The time the cluster will be automatically deleted in RFC3339 text format.
-
#initial_cluster_version ⇒ String
The initial Kubernetes version for this cluster.
-
#initial_node_count ⇒ Fixnum
The number of nodes to create in this cluster.
-
#instance_group_urls ⇒ Array<String>
[Output only] The resource URLs of instance groups associated with this cluster.
-
#ip_allocation_policy ⇒ Google::Apis::ContainerV1::IpAllocationPolicy
Configuration for controlling how IPs are allocated in the cluster.
-
#label_fingerprint ⇒ String
The fingerprint of the set of labels for this cluster.
-
#legacy_abac ⇒ Google::Apis::ContainerV1::LegacyAbac
Configuration for the legacy Attribute Based Access Control authorization mode.
-
#locations ⇒ Array<String>
The list of Google Compute Engine locations in which the cluster's nodes should be located.
-
#logging_service ⇒ String
The logging service the cluster should use to write logs.
-
#master_auth ⇒ Google::Apis::ContainerV1::MasterAuth
The authentication information for accessing the master endpoint.
-
#monitoring_service ⇒ String
The monitoring service the cluster should use to write metrics.
-
#name ⇒ String
The name of this cluster.
-
#network ⇒ String
The name of the Google Compute Engine network to which the cluster is connected.
-
#network_policy ⇒ Google::Apis::ContainerV1::NetworkPolicy
Configuration options for the NetworkPolicy feature.
-
#node_config ⇒ Google::Apis::ContainerV1::NodeConfig
Parameters that describe the nodes in a cluster.
-
#node_ipv4_cidr_size ⇒ Fixnum
[Output only] The size of the address space on each node for hosting containers.
-
#node_pools ⇒ Array<Google::Apis::ContainerV1::NodePool>
The node pools associated with this cluster.
-
#resource_labels ⇒ Hash<String,String>
The resource labels for the cluster to use to annotate any related Google Compute Engine resources.
-
#self_link ⇒ String
[Output only] Server-defined URL for the resource.
-
#services_ipv4_cidr ⇒ String
[Output only] The IP address range of the Kubernetes services in this cluster, in CIDR notation (e.g.
1.2.3.4/29). -
#status ⇒ String
[Output only] The current status of this cluster.
-
#status_message ⇒ String
[Output only] Additional information about the current status of this cluster, if available.
-
#subnetwork ⇒ String
The name of the Google Compute Engine subnetwork to which the cluster is connected.
-
#zone ⇒ String
[Output only] The name of the Google Compute Engine zone in which the cluster resides.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Cluster
constructor
A new instance of Cluster.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Google::Apis::Core::JsonObjectSupport
Methods included from Google::Apis::Core::Hashable
Constructor Details
#initialize(**args) ⇒ Cluster
Returns a new instance of Cluster
387 388 389 |
# File 'generated/google/apis/container_v1/classes.rb', line 387 def initialize(**args) update!(**args) end |
Instance Attribute Details
#addons_config ⇒ Google::Apis::ContainerV1::AddonsConfig
Configuration for the addons that can be automatically spun up in the
cluster, enabling additional functionality.
Corresponds to the JSON property addonsConfig
171 172 173 |
# File 'generated/google/apis/container_v1/classes.rb', line 171 def addons_config @addons_config end |
#cluster_ipv4_cidr ⇒ String
The IP address range of the container pods in this cluster, in
CIDR
notation (e.g. 10.96.0.0/14). Leave blank to have
one automatically chosen or specify a /14 block in 10.0.0.0/8.
Corresponds to the JSON property clusterIpv4Cidr
247 248 249 |
# File 'generated/google/apis/container_v1/classes.rb', line 247 def cluster_ipv4_cidr @cluster_ipv4_cidr end |
#create_time ⇒ String
[Output only] The time the cluster was created, in
RFC3339 text format.
Corresponds to the JSON property createTime
239 240 241 |
# File 'generated/google/apis/container_v1/classes.rb', line 239 def create_time @create_time end |
#current_master_version ⇒ String
[Output only] The current software version of the master endpoint.
Corresponds to the JSON property currentMasterVersion
160 161 162 |
# File 'generated/google/apis/container_v1/classes.rb', line 160 def current_master_version @current_master_version end |
#current_node_count ⇒ Fixnum
[Output only] The number of nodes currently in the cluster.
Corresponds to the JSON property currentNodeCount
321 322 323 |
# File 'generated/google/apis/container_v1/classes.rb', line 321 def current_node_count @current_node_count end |
#current_node_version ⇒ String
[Output only] The current version of the node software components.
If they are currently at multiple versions because they're in the process
of being upgraded, this reflects the minimum version of all nodes.
Corresponds to the JSON property currentNodeVersion
183 184 185 |
# File 'generated/google/apis/container_v1/classes.rb', line 183 def current_node_version @current_node_version end |
#description ⇒ String
An optional description of this cluster.
Corresponds to the JSON property description
316 317 318 |
# File 'generated/google/apis/container_v1/classes.rb', line 316 def description @description end |
#enable_kubernetes_alpha ⇒ Boolean Also known as: enable_kubernetes_alpha?
Kubernetes alpha features are enabled on this cluster. This includes alpha
API groups (e.g. v1alpha1) and features that may not be production ready in
the kubernetes version of the master and nodes.
The cluster has no SLA for uptime and master/node upgrades are disabled.
Alpha enabled clusters are automatically deleted thirty days after
creation.
Corresponds to the JSON property enableKubernetesAlpha
310 311 312 |
# File 'generated/google/apis/container_v1/classes.rb', line 310 def enable_kubernetes_alpha @enable_kubernetes_alpha end |
#endpoint ⇒ String
[Output only] The IP address of this cluster's master endpoint.
The endpoint can be accessed from the internet at
https://username:password@endpoint/.
See the masterAuth property of this resource for username and
password information.
Corresponds to the JSON property endpoint
233 234 235 |
# File 'generated/google/apis/container_v1/classes.rb', line 233 def endpoint @endpoint end |
#expire_time ⇒ String
[Output only] The time the cluster will be automatically
deleted in RFC3339 text format.
Corresponds to the JSON property expireTime
372 373 374 |
# File 'generated/google/apis/container_v1/classes.rb', line 372 def expire_time @expire_time end |
#initial_cluster_version ⇒ String
The initial Kubernetes version for this cluster. Valid versions are those
found in validMasterVersions returned by getServerConfig. The version can
be upgraded over time; such upgrades are reflected in
currentMasterVersion and currentNodeVersion.
Corresponds to the JSON property initialClusterVersion
213 214 215 |
# File 'generated/google/apis/container_v1/classes.rb', line 213 def initial_cluster_version @initial_cluster_version end |
#initial_node_count ⇒ Fixnum
The number of nodes to create in this cluster. You must ensure that your
Compute Engine resource quota
is sufficient for this number of instances. You must also have available
firewall and routes quota.
For requests, this field should only be used in lieu of a
"node_pool" object, since this configuration (along with the
"node_config") will be used to create a "NodePool" object with an
auto-generated name. Do not use this and a node_pool at the same time.
Corresponds to the JSON property initialNodeCount
259 260 261 |
# File 'generated/google/apis/container_v1/classes.rb', line 259 def initial_node_count @initial_node_count end |
#instance_group_urls ⇒ Array<String>
[Output only] The resource URLs of instance
groups associated with this
cluster.
Corresponds to the JSON property instanceGroupUrls
285 286 287 |
# File 'generated/google/apis/container_v1/classes.rb', line 285 def instance_group_urls @instance_group_urls end |
#ip_allocation_policy ⇒ Google::Apis::ContainerV1::IpAllocationPolicy
Configuration for controlling how IPs are allocated in the cluster.
Corresponds to the JSON property ipAllocationPolicy
218 219 220 |
# File 'generated/google/apis/container_v1/classes.rb', line 218 def ip_allocation_policy @ip_allocation_policy end |
#label_fingerprint ⇒ String
The fingerprint of the set of labels for this cluster.
Corresponds to the JSON property labelFingerprint
343 344 345 |
# File 'generated/google/apis/container_v1/classes.rb', line 343 def label_fingerprint @label_fingerprint end |
#legacy_abac ⇒ Google::Apis::ContainerV1::LegacyAbac
Configuration for the legacy Attribute Based Access Control authorization
mode.
Corresponds to the JSON property legacyAbac
224 225 226 |
# File 'generated/google/apis/container_v1/classes.rb', line 224 def legacy_abac @legacy_abac end |
#locations ⇒ Array<String>
The list of Google Compute Engine
locations in which the cluster's nodes
should be located.
Corresponds to the JSON property locations
273 274 275 |
# File 'generated/google/apis/container_v1/classes.rb', line 273 def locations @locations end |
#logging_service ⇒ String
The logging service the cluster should use to write logs. Currently available options:
logging.googleapis.com- the Google Cloud Logging service.none- no logs will be exported from the cluster.- if left as an empty string,
logging.googleapis.comwill be used. Corresponds to the JSON propertyloggingService
366 367 368 |
# File 'generated/google/apis/container_v1/classes.rb', line 366 def logging_service @logging_service end |
#master_auth ⇒ Google::Apis::ContainerV1::MasterAuth
The authentication information for accessing the master endpoint.
Authentication can be done using HTTP basic auth or using client
certificates.
Corresponds to the JSON property masterAuth
385 386 387 |
# File 'generated/google/apis/container_v1/classes.rb', line 385 def master_auth @master_auth end |
#monitoring_service ⇒ String
The monitoring service the cluster should use to write metrics. Currently available options:
monitoring.googleapis.com- the Google Cloud Monitoring service.none- no metrics will be exported from the cluster.- if left as an empty string,
monitoring.googleapis.comwill be used. Corresponds to the JSON propertymonitoringService
330 331 332 |
# File 'generated/google/apis/container_v1/classes.rb', line 330 def monitoring_service @monitoring_service end |
#name ⇒ String
The name of this cluster. The name must be unique within this project and zone, and can be up to 40 characters with the following restrictions:
- Lowercase letters, numbers, and hyphens only.
- Must start with a letter.
- Must end with a number or a letter.
Corresponds to the JSON property
name
199 200 201 |
# File 'generated/google/apis/container_v1/classes.rb', line 199 def name @name end |
#network ⇒ String
The name of the Google Compute Engine
network to which the
cluster is connected. If left unspecified, the default network
will be used.
Corresponds to the JSON property network
338 339 340 |
# File 'generated/google/apis/container_v1/classes.rb', line 338 def network @network end |
#network_policy ⇒ Google::Apis::ContainerV1::NetworkPolicy
Configuration options for the NetworkPolicy feature.
https://kubernetes.io/docs/concepts/services-networking/networkpolicies/
Corresponds to the JSON property networkPolicy
300 301 302 |
# File 'generated/google/apis/container_v1/classes.rb', line 300 def network_policy @network_policy end |
#node_config ⇒ Google::Apis::ContainerV1::NodeConfig
Parameters that describe the nodes in a cluster.
Corresponds to the JSON property nodeConfig
165 166 167 |
# File 'generated/google/apis/container_v1/classes.rb', line 165 def node_config @node_config end |
#node_ipv4_cidr_size ⇒ Fixnum
[Output only] The size of the address space on each node for hosting
containers. This is provisioned from within the container_ipv4_cidr
range.
Corresponds to the JSON property nodeIpv4CidrSize
357 358 359 |
# File 'generated/google/apis/container_v1/classes.rb', line 357 def node_ipv4_cidr_size @node_ipv4_cidr_size end |
#node_pools ⇒ Array<Google::Apis::ContainerV1::NodePool>
The node pools associated with this cluster.
This field should not be set if "node_config" or "initial_node_count" are
specified.
Corresponds to the JSON property nodePools
266 267 268 |
# File 'generated/google/apis/container_v1/classes.rb', line 266 def node_pools @node_pools end |
#resource_labels ⇒ Hash<String,String>
The resource labels for the cluster to use to annotate any related
Google Compute Engine resources.
Corresponds to the JSON property resourceLabels
205 206 207 |
# File 'generated/google/apis/container_v1/classes.rb', line 205 def resource_labels @resource_labels end |
#self_link ⇒ String
[Output only] Server-defined URL for the resource.
Corresponds to the JSON property selfLink
278 279 280 |
# File 'generated/google/apis/container_v1/classes.rb', line 278 def self_link @self_link end |
#services_ipv4_cidr ⇒ String
[Output only] The IP address range of the Kubernetes services in
this cluster, in
CIDR
notation (e.g. 1.2.3.4/29). Service addresses are
typically put in the last /16 from the container CIDR.
Corresponds to the JSON property servicesIpv4Cidr
294 295 296 |
# File 'generated/google/apis/container_v1/classes.rb', line 294 def services_ipv4_cidr @services_ipv4_cidr end |
#status ⇒ String
[Output only] The current status of this cluster.
Corresponds to the JSON property status
176 177 178 |
# File 'generated/google/apis/container_v1/classes.rb', line 176 def status @status end |
#status_message ⇒ String
[Output only] Additional information about the current status of this
cluster, if available.
Corresponds to the JSON property statusMessage
378 379 380 |
# File 'generated/google/apis/container_v1/classes.rb', line 378 def @status_message end |
#subnetwork ⇒ String
The name of the Google Compute Engine
subnetwork to which the
cluster is connected.
Corresponds to the JSON property subnetwork
190 191 192 |
# File 'generated/google/apis/container_v1/classes.rb', line 190 def subnetwork @subnetwork end |
#zone ⇒ String
[Output only] The name of the Google Compute Engine
zone in which the cluster
resides.
Corresponds to the JSON property zone
350 351 352 |
# File 'generated/google/apis/container_v1/classes.rb', line 350 def zone @zone end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 |
# File 'generated/google/apis/container_v1/classes.rb', line 392 def update!(**args) @current_master_version = args[:current_master_version] if args.key?(:current_master_version) @node_config = args[:node_config] if args.key?(:node_config) @addons_config = args[:addons_config] if args.key?(:addons_config) @status = args[:status] if args.key?(:status) @current_node_version = args[:current_node_version] if args.key?(:current_node_version) @subnetwork = args[:subnetwork] if args.key?(:subnetwork) @name = args[:name] if args.key?(:name) @resource_labels = args[:resource_labels] if args.key?(:resource_labels) @initial_cluster_version = args[:initial_cluster_version] if args.key?(:initial_cluster_version) @ip_allocation_policy = args[:ip_allocation_policy] if args.key?(:ip_allocation_policy) @legacy_abac = args[:legacy_abac] if args.key?(:legacy_abac) @endpoint = args[:endpoint] if args.key?(:endpoint) @create_time = args[:create_time] if args.key?(:create_time) @cluster_ipv4_cidr = args[:cluster_ipv4_cidr] if args.key?(:cluster_ipv4_cidr) @initial_node_count = args[:initial_node_count] if args.key?(:initial_node_count) @node_pools = args[:node_pools] if args.key?(:node_pools) @locations = args[:locations] if args.key?(:locations) @self_link = args[:self_link] if args.key?(:self_link) @instance_group_urls = args[:instance_group_urls] if args.key?(:instance_group_urls) @services_ipv4_cidr = args[:services_ipv4_cidr] if args.key?(:services_ipv4_cidr) @network_policy = args[:network_policy] if args.key?(:network_policy) @enable_kubernetes_alpha = args[:enable_kubernetes_alpha] if args.key?(:enable_kubernetes_alpha) @description = args[:description] if args.key?(:description) @current_node_count = args[:current_node_count] if args.key?(:current_node_count) @monitoring_service = args[:monitoring_service] if args.key?(:monitoring_service) @network = args[:network] if args.key?(:network) @label_fingerprint = args[:label_fingerprint] if args.key?(:label_fingerprint) @zone = args[:zone] if args.key?(:zone) @node_ipv4_cidr_size = args[:node_ipv4_cidr_size] if args.key?(:node_ipv4_cidr_size) @logging_service = args[:logging_service] if args.key?(:logging_service) @expire_time = args[:expire_time] if args.key?(:expire_time) @status_message = args[:status_message] if args.key?(:status_message) @master_auth = args[:master_auth] if args.key?(:master_auth) end |