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:



3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
# File 'proto_docs/google/container/v1beta1/cluster_service.rb', line 3361

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