Class: Google::Cloud::Container::V1beta1::NodePoolAutoscaling
- Inherits:
-
Object
- Object
- Google::Cloud::Container::V1beta1::NodePoolAutoscaling
- Extended by:
- Protobuf::MessageExts::ClassMethods
- Includes:
- Protobuf::MessageExts
- Defined in:
- proto_docs/google/container/v1beta1/cluster_service.rb
Overview
NodePoolAutoscaling contains information required by cluster autoscaler to adjust the size of the node pool to the current cluster usage.
Defined Under Namespace
Modules: LocationPolicy
Instance Attribute Summary collapse
-
#autoprovisioned ⇒ ::Boolean
Can this node pool be deleted automatically.
-
#enabled ⇒ ::Boolean
Is autoscaling enabled for this node pool.
-
#location_policy ⇒ ::Google::Cloud::Container::V1beta1::NodePoolAutoscaling::LocationPolicy
Location policy used when scaling up a nodepool.
-
#max_node_count ⇒ ::Integer
Maximum number of nodes for one location in the NodePool.
-
#min_node_count ⇒ ::Integer
Minimum number of nodes for one location in the NodePool.
-
#total_max_node_count ⇒ ::Integer
Maximum number of nodes in the node pool.
-
#total_min_node_count ⇒ ::Integer
Minimum number of nodes in the node pool.
Instance Attribute Details
#autoprovisioned ⇒ ::Boolean
Returns Can this node pool be deleted automatically.
3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 |
# File 'proto_docs/google/container/v1beta1/cluster_service.rb', line 3946 class NodePoolAutoscaling include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # Location policy specifies how zones are picked when scaling up the # nodepool. module LocationPolicy # Not set. LOCATION_POLICY_UNSPECIFIED = 0 # BALANCED is a best effort policy that aims to balance the sizes of # different zones. BALANCED = 1 # ANY policy picks zones that have the highest capacity available. ANY = 2 end end |
#enabled ⇒ ::Boolean
Returns Is autoscaling enabled for this node pool.
3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 |
# File 'proto_docs/google/container/v1beta1/cluster_service.rb', line 3946 class NodePoolAutoscaling include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # Location policy specifies how zones are picked when scaling up the # nodepool. module LocationPolicy # Not set. LOCATION_POLICY_UNSPECIFIED = 0 # BALANCED is a best effort policy that aims to balance the sizes of # different zones. BALANCED = 1 # ANY policy picks zones that have the highest capacity available. ANY = 2 end end |
#location_policy ⇒ ::Google::Cloud::Container::V1beta1::NodePoolAutoscaling::LocationPolicy
Returns Location policy used when scaling up a nodepool.
3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 |
# File 'proto_docs/google/container/v1beta1/cluster_service.rb', line 3946 class NodePoolAutoscaling include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # Location policy specifies how zones are picked when scaling up the # nodepool. module LocationPolicy # Not set. LOCATION_POLICY_UNSPECIFIED = 0 # BALANCED is a best effort policy that aims to balance the sizes of # different zones. BALANCED = 1 # ANY policy picks zones that have the highest capacity available. ANY = 2 end end |
#max_node_count ⇒ ::Integer
Returns Maximum number of nodes for one location in the NodePool. Must be >= min_node_count. There has to be enough quota to scale up the cluster.
3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 |
# File 'proto_docs/google/container/v1beta1/cluster_service.rb', line 3946 class NodePoolAutoscaling include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # Location policy specifies how zones are picked when scaling up the # nodepool. module LocationPolicy # Not set. LOCATION_POLICY_UNSPECIFIED = 0 # BALANCED is a best effort policy that aims to balance the sizes of # different zones. BALANCED = 1 # ANY policy picks zones that have the highest capacity available. ANY = 2 end end |
#min_node_count ⇒ ::Integer
Returns Minimum number of nodes for one location in the NodePool. Must be >= 1 and <= max_node_count.
3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 |
# File 'proto_docs/google/container/v1beta1/cluster_service.rb', line 3946 class NodePoolAutoscaling include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # Location policy specifies how zones are picked when scaling up the # nodepool. module LocationPolicy # Not set. LOCATION_POLICY_UNSPECIFIED = 0 # BALANCED is a best effort policy that aims to balance the sizes of # different zones. BALANCED = 1 # ANY policy picks zones that have the highest capacity available. ANY = 2 end end |
#total_max_node_count ⇒ ::Integer
Returns Maximum number of nodes in the node pool. Must be greater than total_min_node_count. There has to be enough quota to scale up the cluster. The total_*_node_count fields are mutually exclusive with the *_node_count fields.
3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 |
# File 'proto_docs/google/container/v1beta1/cluster_service.rb', line 3946 class NodePoolAutoscaling include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # Location policy specifies how zones are picked when scaling up the # nodepool. module LocationPolicy # Not set. LOCATION_POLICY_UNSPECIFIED = 0 # BALANCED is a best effort policy that aims to balance the sizes of # different zones. BALANCED = 1 # ANY policy picks zones that have the highest capacity available. ANY = 2 end end |
#total_min_node_count ⇒ ::Integer
Returns Minimum number of nodes in the node pool. Must be greater than 1 less than total_max_node_count. The total_*_node_count fields are mutually exclusive with the *_node_count fields.
3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 |
# File 'proto_docs/google/container/v1beta1/cluster_service.rb', line 3946 class NodePoolAutoscaling include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # Location policy specifies how zones are picked when scaling up the # nodepool. module LocationPolicy # Not set. LOCATION_POLICY_UNSPECIFIED = 0 # BALANCED is a best effort policy that aims to balance the sizes of # different zones. BALANCED = 1 # ANY policy picks zones that have the highest capacity available. ANY = 2 end end |