Class: Google::Cloud::Container::V1::NodePool::PlacementPolicy

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

Overview

PlacementPolicy defines the placement policy used by the node pool.

Defined Under Namespace

Modules: Type

Instance Attribute Summary collapse

Instance Attribute Details

#type::Google::Cloud::Container::V1::NodePool::PlacementPolicy::Type

Returns The type of placement.



2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
# File 'proto_docs/google/container/v1/cluster_service.rb', line 2927

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

  # Type defines the type of placement policy.
  module Type
    # TYPE_UNSPECIFIED specifies no requirements on nodes
    # placement.
    TYPE_UNSPECIFIED = 0

    # COMPACT specifies node placement in the same availability domain to
    # ensure low communication latency.
    COMPACT = 1
  end
end