Class: Google::Apis::ContainerV1beta1::AutoprovisioningNodePoolDefaults

Inherits:
Object
  • Object
show all
Includes:
Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
Defined in:
lib/google/apis/container_v1beta1/classes.rb,
lib/google/apis/container_v1beta1/representations.rb,
lib/google/apis/container_v1beta1/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.



327
328
329
# File 'lib/google/apis/container_v1beta1/classes.rb', line 327

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)


260
261
262
# File 'lib/google/apis/container_v1beta1/classes.rb', line 260

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)


266
267
268
# File 'lib/google/apis/container_v1beta1/classes.rb', line 266

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)


272
273
274
# File 'lib/google/apis/container_v1beta1/classes.rb', line 272

def disk_type
  @disk_type
end

#image_typeString

The image type to use for NAP created node. Corresponds to the JSON property imageType

Returns:

  • (String)


277
278
279
# File 'lib/google/apis/container_v1beta1/classes.rb', line 277

def image_type
  @image_type
end

#managementGoogle::Apis::ContainerV1beta1::NodeManagement

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



283
284
285
# File 'lib/google/apis/container_v1beta1/classes.rb', line 283

def management
  @management
end

#min_cpu_platformString

Deprecated. 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 This field is deprecated, min_cpu_platform should be specified using cloud.google.com/requested-min-cpu-platform label selector on the pod. To unset the min cpu platform field pass "automatic" as field value. Corresponds to the JSON property minCpuPlatform

Returns:

  • (String)


295
296
297
# File 'lib/google/apis/container_v1beta1/classes.rb', line 295

def min_cpu_platform
  @min_cpu_platform
end

#oauth_scopesArray<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: * https://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). 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

Returns:

  • (Array<String>)


308
309
310
# File 'lib/google/apis/container_v1beta1/classes.rb', line 308

def oauth_scopes
  @oauth_scopes
end

#service_accountString

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

Returns:

  • (String)


315
316
317
# File 'lib/google/apis/container_v1beta1/classes.rb', line 315

def 
  @service_account
end

#shielded_instance_configGoogle::Apis::ContainerV1beta1::ShieldedInstanceConfig

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



320
321
322
# File 'lib/google/apis/container_v1beta1/classes.rb', line 320

def shielded_instance_config
  @shielded_instance_config
end

#upgrade_settingsGoogle::Apis::ContainerV1beta1::UpgradeSettings

Upgrade settings control disruption and speed of the upgrade. Corresponds to the JSON property upgradeSettings



325
326
327
# File 'lib/google/apis/container_v1beta1/classes.rb', line 325

def upgrade_settings
  @upgrade_settings
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



332
333
334
335
336
337
338
339
340
341
342
343
# File 'lib/google/apis/container_v1beta1/classes.rb', line 332

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