Class: Google::Cloud::Container::V1::NodeCreationConfig
- Inherits:
-
Object
- Object
- Google::Cloud::Container::V1::NodeCreationConfig
- Extended by:
- Protobuf::MessageExts::ClassMethods
- Includes:
- Protobuf::MessageExts
- Defined in:
- proto_docs/google/container/v1/cluster_service.rb
Overview
NodeCreationConfig defines the settings of node creation mode.
Defined Under Namespace
Modules: Mode
Instance Attribute Summary collapse
-
#node_creation_mode ⇒ ::Google::Cloud::Container::V1::NodeCreationConfig::Mode
The mode of node creation.
Instance Attribute Details
#node_creation_mode ⇒ ::Google::Cloud::Container::V1::NodeCreationConfig::Mode
Returns The mode of node creation.
3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 |
# File 'proto_docs/google/container/v1/cluster_service.rb', line 3022 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 |