Class: Google::Apis::ContainerV1::AutoprovisioningNodePoolDefaults

Inherits:
Object
  • Object
show all
Includes:
Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
Defined in:
generated/google/apis/container_v1/classes.rb,
generated/google/apis/container_v1/representations.rb,
generated/google/apis/container_v1/representations.rb

Overview

AutoprovisioningNodePoolDefaults contains defaults for a node pool created by NAP.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ AutoprovisioningNodePoolDefaults

Returns a new instance of AutoprovisioningNodePoolDefaults.



251
252
253
# File 'generated/google/apis/container_v1/classes.rb', line 251

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#boot_disk_kms_keyString

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/[LOCATION]/keyRings/[RING_NAME]/cryptoKeys/[KEY_NAME] . For more information about protecting resources with Cloud KMS Keys please see: https://cloud.google.com/compute/docs/disks/customer-managed-encryption Corresponds to the JSON property bootDiskKmsKey

Returns:

  • (String)


187
188
189
# File 'generated/google/apis/container_v1/classes.rb', line 187

def boot_disk_kms_key
  @boot_disk_kms_key
end

#disk_size_gbFixnum

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

Returns:

  • (Fixnum)


193
194
195
# File 'generated/google/apis/container_v1/classes.rb', line 193

def disk_size_gb
  @disk_size_gb
end

#disk_typeString

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

Returns:

  • (String)


199
200
201
# File 'generated/google/apis/container_v1/classes.rb', line 199

def disk_type
  @disk_type
end

#managementGoogle::Apis::ContainerV1::NodeManagement

NodeManagement defines the set of node management services turned on for the node pool. Corresponds to the JSON property management



205
206
207
# File 'generated/google/apis/container_v1/classes.rb', line 205

def management
  @management
end

#min_cpu_platformString

Minimum CPU platform to be used for NAP created node pools. 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 To unset the min cpu platform field pass "automatic" as field value. Corresponds to the JSON property minCpuPlatform

Returns:

  • (String)


216
217
218
# File 'generated/google/apis/container_v1/classes.rb', line 216

def min_cpu_platform
  @min_cpu_platform
end

#oauth_scopesArray<String>

Scopes that are used by NAP when creating node pools. Corresponds to the JSON property oauthScopes

Returns:

  • (Array<String>)


221
222
223
# File 'generated/google/apis/container_v1/classes.rb', line 221

def oauth_scopes
  @oauth_scopes
end

#service_accountString

The Google Cloud Platform Service Account to be used by the node VMs. Corresponds to the JSON property serviceAccount

Returns:

  • (String)


226
227
228
# File 'generated/google/apis/container_v1/classes.rb', line 226

def 
  @service_account
end

#shielded_instance_configGoogle::Apis::ContainerV1::ShieldedInstanceConfig

A set of Shielded Instance options. Corresponds to the JSON property shieldedInstanceConfig



231
232
233
# File 'generated/google/apis/container_v1/classes.rb', line 231

def shielded_instance_config
  @shielded_instance_config
end

#upgrade_settingsGoogle::Apis::ContainerV1::UpgradeSettings

These upgrade settings control the level of parallelism and the level of disruption caused by an upgrade. maxUnavailable controls the number of nodes that can be simultaneously unavailable. maxSurge controls the number of additional nodes that can be added to the node pool temporarily for the time of the upgrade to increase the number of available nodes. (maxUnavailable + maxSurge) determines the level of parallelism (how many nodes are being upgraded at the same time). Note: upgrades inevitably introduce some disruption since workloads need to be moved from old nodes to new, upgraded ones. Even if maxUnavailable=0, this holds true. (Disruption stays within the limits of PodDisruptionBudget, if it is configured.) Consider a hypothetical node pool with 5 nodes having maxSurge=2, maxUnavailable=1. This means the upgrade process upgrades 3 nodes simultaneously. It creates 2 additional ( upgraded) nodes, then it brings down 3 old (not yet upgraded) nodes at the same time. This ensures that there are always at least 4 nodes available. Corresponds to the JSON property upgradeSettings



249
250
251
# File 'generated/google/apis/container_v1/classes.rb', line 249

def upgrade_settings
  @upgrade_settings
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



256
257
258
259
260
261
262
263
264
265
266
# File 'generated/google/apis/container_v1/classes.rb', line 256

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)
  @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