Class: Google::Cloud::Container::V1beta1::NodeCreationConfig

Inherits:
Object
  • Object
show all
Extended by:
Protobuf::MessageExts::ClassMethods
Includes:
Protobuf::MessageExts
Defined in:
proto_docs/google/container/v1beta1/cluster_service.rb

Overview

NodeCreationConfig defines the settings of node creation mode.

Defined Under Namespace

Modules: Mode

Instance Attribute Summary collapse

Instance Attribute Details

#node_creation_mode::Google::Cloud::Container::V1beta1::NodeCreationConfig::Mode

Returns The mode of node creation.

Returns:



3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
# File 'proto_docs/google/container/v1beta1/cluster_service.rb', line 3382

class NodeCreationConfig
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # The mode of node creation.
  module Mode
    # When no user input is provided.
    MODE_UNSPECIFIED = 0

    # Kubelet registers itself.
    VIA_KUBELET = 1

    # gcp-controller-manager automatically creates the node object after
    # CSR approval.
    VIA_CONTROL_PLANE = 2
  end
end