Class: Google::Apis::ContainerV1::ClusterUpdate
- Inherits:
-
Object
- Object
- Google::Apis::ContainerV1::ClusterUpdate
- Defined in:
- generated/google/apis/container_v1/classes.rb,
generated/google/apis/container_v1/representations.rb,
generated/google/apis/container_v1/representations.rb
Overview
ClusterUpdate describes an update to the cluster. Exactly one update can be applied to a cluster with each request, so at most one field can be provided.
Instance Attribute Summary collapse
-
#desired_addons_config ⇒ Google::Apis::ContainerV1::AddonsConfig
Configuration for the addons that can be automatically spun up in the cluster, enabling additional functionality.
-
#desired_image_type ⇒ String
The desired image type for the node pool.
-
#desired_locations ⇒ Array<String>
The desired list of Google Compute Engine locations in which the cluster's nodes should be located.
-
#desired_master_version ⇒ String
The Kubernetes version to change the master to.
-
#desired_monitoring_service ⇒ String
The monitoring service the cluster should use to write metrics.
-
#desired_node_pool_autoscaling ⇒ Google::Apis::ContainerV1::NodePoolAutoscaling
NodePoolAutoscaling contains information required by cluster autoscaler to adjust the size of the node pool to the current cluster usage.
-
#desired_node_pool_id ⇒ String
The node pool to be upgraded.
-
#desired_node_version ⇒ String
The Kubernetes version to change the nodes to (typically an upgrade).
Instance Method Summary collapse
-
#initialize(**args) ⇒ ClusterUpdate
constructor
A new instance of ClusterUpdate.
-
#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) ⇒ ClusterUpdate
Returns a new instance of ClusterUpdate
844 845 846 |
# File 'generated/google/apis/container_v1/classes.rb', line 844 def initialize(**args) update!(**args) end |
Instance Attribute Details
#desired_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 desiredAddonsConfig
807 808 809 |
# File 'generated/google/apis/container_v1/classes.rb', line 807 def desired_addons_config @desired_addons_config end |
#desired_image_type ⇒ String
The desired image type for the node pool. NOTE: Set the "desired_node_pool"
field as well.
Corresponds to the JSON property desiredImageType
820 821 822 |
# File 'generated/google/apis/container_v1/classes.rb', line 820 def desired_image_type @desired_image_type end |
#desired_locations ⇒ Array<String>
The desired list of Google Compute Engine locations in which the cluster's nodes should be located. Changing the
locations a cluster is in will result in nodes being either created or removed
from the cluster, depending on whether locations are being added or removed.
This list must always include the cluster's primary zone.
Corresponds to the JSON property desiredLocations
835 836 837 |
# File 'generated/google/apis/container_v1/classes.rb', line 835 def desired_locations @desired_locations end |
#desired_master_version ⇒ String
The Kubernetes version to change the master to. The only valid value is the
latest supported version. Use "-" to have the server automatically select the
latest version.
Corresponds to the JSON property desiredMasterVersion
842 843 844 |
# File 'generated/google/apis/container_v1/classes.rb', line 842 def desired_master_version @desired_master_version end |
#desired_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
Corresponds to the JSON property desiredMonitoringService
801 802 803 |
# File 'generated/google/apis/container_v1/classes.rb', line 801 def desired_monitoring_service @desired_monitoring_service end |
#desired_node_pool_autoscaling ⇒ Google::Apis::ContainerV1::NodePoolAutoscaling
NodePoolAutoscaling contains information required by cluster autoscaler to
adjust the size of the node pool to the current cluster usage.
Corresponds to the JSON property desiredNodePoolAutoscaling
826 827 828 |
# File 'generated/google/apis/container_v1/classes.rb', line 826 def desired_node_pool_autoscaling @desired_node_pool_autoscaling end |
#desired_node_pool_id ⇒ String
The node pool to be upgraded. This field is mandatory if "desired_node_version"
, "desired_image_family" or "desired_node_pool_autoscaling" is specified and
there is more than one node pool on the cluster.
Corresponds to the JSON property desiredNodePoolId
814 815 816 |
# File 'generated/google/apis/container_v1/classes.rb', line 814 def desired_node_pool_id @desired_node_pool_id end |
#desired_node_version ⇒ String
The Kubernetes version to change the nodes to (typically an upgrade). Use -
to upgrade to the latest version supported by the server.
Corresponds to the JSON property desiredNodeVersion
794 795 796 |
# File 'generated/google/apis/container_v1/classes.rb', line 794 def desired_node_version @desired_node_version end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
849 850 851 852 853 854 855 856 857 858 |
# File 'generated/google/apis/container_v1/classes.rb', line 849 def update!(**args) @desired_node_version = args[:desired_node_version] if args.key?(:desired_node_version) @desired_monitoring_service = args[:desired_monitoring_service] if args.key?(:desired_monitoring_service) @desired_addons_config = args[:desired_addons_config] if args.key?(:desired_addons_config) @desired_node_pool_id = args[:desired_node_pool_id] if args.key?(:desired_node_pool_id) @desired_image_type = args[:desired_image_type] if args.key?(:desired_image_type) @desired_node_pool_autoscaling = args[:desired_node_pool_autoscaling] if args.key?(:desired_node_pool_autoscaling) @desired_locations = args[:desired_locations] if args.key?(:desired_locations) @desired_master_version = args[:desired_master_version] if args.key?(:desired_master_version) end |