struct Kubernetes::Deployment::Spec
- Kubernetes::Deployment::Spec
- Struct
- Value
- Object
Included Modules
- JSON::Serializable
- Kubernetes::Serializable
- YAML::Serializable
Defined in:
kubernetes.crConstructors
- .new(ctx : YAML::ParseContext, node : YAML::Nodes::Node)
- .new(pull : JSON::PullParser)
- .new(*, replicas : Int32 = 1, selector : Kubernetes::Deployment::Spec::Selector = Selector.new, template : Kubernetes::PodTemplate, strategy : Kubernetes::Deployment::Spec::Strategy = Strategy.new, revision_history_limit : Int32 = 10, progress_deadline_seconds : Int32 = 600)
Instance Method Summary
- #progress_deadline_seconds : Int32
- #replicas : Int32
- #revision_history_limit : Int32
- #selector : Selector
- #strategy : Strategy
- #template : PodTemplate
Instance methods inherited from module Kubernetes::Serializable
pretty_print(pp) : Nil
pretty_print
Constructor Detail
def self.new(*, replicas : Int32 = 1, selector : Kubernetes::Deployment::Spec::Selector = Selector.new, template : Kubernetes::PodTemplate, strategy : Kubernetes::Deployment::Spec::Strategy = Strategy.new, revision_history_limit : Int32 = 10, progress_deadline_seconds : Int32 = 600)
#