Class: KubeDSL::DSL::V1::Toleration
Instance Method Summary
collapse
#initialize, #to_resource
extended
extended
Instance Method Details
#kind_sym ⇒ Object
29
30
31
|
# File 'lib/kube-dsl/dsl/v1/toleration.rb', line 29
def kind_sym
:toleration
end
|
#serialize ⇒ Object
19
20
21
22
23
24
25
26
27
|
# File 'lib/kube-dsl/dsl/v1/toleration.rb', line 19
def serialize
{}.tap do |result|
result[:effect] = effect
result[:key] = key
result[:operator] = operator
result[:tolerationSeconds] = toleration_seconds
result[:value] = value
end
end
|