class Google::Apis::ContainerV1beta1::AutoprovisioningNodePoolDefaults
AutoprovisioningNodePoolDefaults
contains defaults for a node pool created by NAP.
Attributes
The Customer Managed Encryption Key used to encrypt the boot disk attached to each node in the node pool. This should be of the form projects/[ KEY_PROJECT_ID]/locations//keyRings//cryptoKeys/ . For more information about protecting resources with Cloud KMS Keys please see: cloud.google.com/compute/docs/disks/customer-managed-encryption Corresponds to the JSON property `bootDiskKmsKey` @return [String]
Size of the disk attached to each node, specified in GB. The smallest allowed disk size is 10GB. If unspecified, the default disk size is 100GB. Corresponds to the JSON property `diskSizeGb` @return [Fixnum]
Type of the disk attached to each node (e.g. 'pd-standard', 'pd-ssd' or 'pd- balanced') If unspecified, the default disk type is 'pd-standard' Corresponds to the JSON property `diskType` @return [String]
The image type to use for NAP created node. Corresponds to the JSON property `imageType` @return [String]
NodeManagement
defines the set of node management services turned on for the node pool. Corresponds to the JSON property `management` @return [Google::Apis::ContainerV1beta1::NodeManagement]
Minimum CPU platform to be used by this instance. The instance may be scheduled on the specified or newer CPU platform. Applicable values are the friendly names of CPU platforms, such as `minCpuPlatform: “Intel Haswell”` or ` minCpuPlatform: “Intel Sandy Bridge”`. For more information, read [how to specify min CPU platform](cloud.google.com/compute/docs/instances/ specify-min-cpu-platform) To unset the min cpu platform field pass “automatic” as field value. Corresponds to the JSON property `minCpuPlatform` @return [String]
The set of Google
API scopes to be made available on all of the node VMs under the “default” service account. The following scopes are recommended, but not required, and by default are not included: * `www.googleapis.com/auth/ compute` is required for mounting persistent storage on your nodes. * `https:// www.googleapis.com/auth/devstorage.read_only` is required for communicating with gcr.io (the [Google Container Registry](cloud.google.com/ container-registry/)). If unspecified, no scopes are added, unless Cloud Logging or Cloud Monitoring are enabled, in which case their required scopes will be added. Corresponds to the JSON property `oauthScopes` @return [Array<String>]
The Google
Cloud Platform Service Account to be used by the node VMs. Specify the email address of the Service Account; otherwise, if no Service Account is specified, the “default” service account is used. Corresponds to the JSON property `serviceAccount` @return [String]
A set of Shielded Instance options. Corresponds to the JSON property `shieldedInstanceConfig` @return [Google::Apis::ContainerV1beta1::ShieldedInstanceConfig]
Upgrade settings control disruption and speed of the upgrade. Corresponds to the JSON property `upgradeSettings` @return [Google::Apis::ContainerV1beta1::UpgradeSettings]
Public Class Methods
# File lib/google/apis/container_v1beta1/classes.rb, line 299 def initialize(**args) update!(**args) end
Public Instance Methods
Update properties of this object
# File lib/google/apis/container_v1beta1/classes.rb, line 304 def update!(**args) @boot_disk_kms_key = args[:boot_disk_kms_key] if args.key?(:boot_disk_kms_key) @disk_size_gb = args[:disk_size_gb] if args.key?(:disk_size_gb) @disk_type = args[:disk_type] if args.key?(:disk_type) @image_type = args[:image_type] if args.key?(:image_type) @management = args[:management] if args.key?(:management) @min_cpu_platform = args[:min_cpu_platform] if args.key?(:min_cpu_platform) @oauth_scopes = args[:oauth_scopes] if args.key?(:oauth_scopes) @service_account = args[:service_account] if args.key?(:service_account) @shielded_instance_config = args[:shielded_instance_config] if args.key?(:shielded_instance_config) @upgrade_settings = args[:upgrade_settings] if args.key?(:upgrade_settings) end