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.
2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 |
# File 'proto_docs/google/container/v1/cluster_service.rb', line 2989 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 |