Class: Google::Cloud::Container::V1::NodeTaint
- Inherits:
-
Object
- Object
- Google::Cloud::Container::V1::NodeTaint
- Extended by:
- Protobuf::MessageExts::ClassMethods
- Includes:
- Protobuf::MessageExts
- Defined in:
- proto_docs/google/container/v1/cluster_service.rb
Overview
Kubernetes taint is composed of three fields: key, value, and effect. Effect can only be one of three types: NoSchedule, PreferNoSchedule or NoExecute.
See here for more information, including usage and the valid values.
Defined Under Namespace
Modules: Effect
Instance Attribute Summary collapse
-
#effect ⇒ ::Google::Cloud::Container::V1::NodeTaint::Effect
Effect for taint.
-
#key ⇒ ::String
Key for taint.
-
#value ⇒ ::String
Value for taint.
Instance Attribute Details
#effect ⇒ ::Google::Cloud::Container::V1::NodeTaint::Effect
Returns Effect for taint.
675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 |
# File 'proto_docs/google/container/v1/cluster_service.rb', line 675 class NodeTaint include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # Possible values for Effect in taint. module Effect # Not set EFFECT_UNSPECIFIED = 0 # NoSchedule NO_SCHEDULE = 1 # PreferNoSchedule PREFER_NO_SCHEDULE = 2 # NoExecute NO_EXECUTE = 3 end end |
#key ⇒ ::String
Returns Key for taint.
675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 |
# File 'proto_docs/google/container/v1/cluster_service.rb', line 675 class NodeTaint include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # Possible values for Effect in taint. module Effect # Not set EFFECT_UNSPECIFIED = 0 # NoSchedule NO_SCHEDULE = 1 # PreferNoSchedule PREFER_NO_SCHEDULE = 2 # NoExecute NO_EXECUTE = 3 end end |
#value ⇒ ::String
Returns Value for taint.
675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 |
# File 'proto_docs/google/container/v1/cluster_service.rb', line 675 class NodeTaint include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # Possible values for Effect in taint. module Effect # Not set EFFECT_UNSPECIFIED = 0 # NoSchedule NO_SCHEDULE = 1 # PreferNoSchedule PREFER_NO_SCHEDULE = 2 # NoExecute NO_EXECUTE = 3 end end |