class Pyrite::Api::Core::V1::ContainerStatus
Overview
ContainerStatus contains details for the current status of this container.
Defined in:
versions/v1.14/api/core/v1/container_status.crConstructors
-
.new(ctx : YAML::ParseContext, node : YAML::Nodes::Node)
ContainerStatus contains details for the current status of this container.
-
.new(pull : JSON::PullParser)
ContainerStatus contains details for the current status of this container.
- .new(*, container_id : String? = nil, image : String, image_id : String, last_state : Api::Core::V1::ContainerState? = nil, name : String, ready : Bool, restart_count : Int32, state : Api::Core::V1::ContainerState? = nil)
Instance Method Summary
- #container_id : String?
- #container_id=(container_id : String?)
- #image : String
- #image=(image : String)
- #image_id : String
- #image_id=(image_id : String)
- #last_state : Api::Core::V1::ContainerState?
- #last_state=(last_state : Api::Core::V1::ContainerState?)
- #name : String
- #name=(name : String)
- #ready : Bool
- #ready=(ready : Bool)
- #restart_count : Int32
- #restart_count=(restart_count : Int32)
- #state : Api::Core::V1::ContainerState?
- #state=(state : Api::Core::V1::ContainerState?)
Constructor methods inherited from class Pyrite::Kubernetes::Spec
new(ctx : YAML::ParseContext, node : YAML::Nodes::Node)new(pull : JSON::PullParser) new
Constructor Detail
def self.new(ctx : YAML::ParseContext, node : YAML::Nodes::Node)
#
ContainerStatus contains details for the current status of this container.
def self.new(pull : JSON::PullParser)
#
ContainerStatus contains details for the current status of this container.
def self.new(*, container_id : String? = nil, image : String, image_id : String, last_state : Api::Core::V1::ContainerState? = nil, name : String, ready : Bool, restart_count : Int32, state : Api::Core::V1::ContainerState? = nil)
#