struct

Kubernetes::CustomResourceDefinitionStatus

Inherits YAML::Serializable < JSON::Serializable < Kubernetes::Serializable < Struct < Value < Object

CustomResourceDefinitionStatus indicates the state of the CustomResourceDefinition

Constructors

new(pull : ::JSON::PullParser)
new(*, __pull_for_json_serializable pull : ::JSON::PullParser)
new(*, __context_for_yaml_serializable ctx : YAML::ParseContext, __node_for_yaml_serializable node : YAML::Nodes::Node)

Instance methods

accepted_names

acceptedNames are the names that are actually being used to serve discovery. They may be different than the names in spec.

Source
accepted_names=(accepted_names : CustomResourceDefinitionNames | Nil)

acceptedNames are the names that are actually being used to serve discovery. They may be different than the names in spec.

Source
conditions

conditions indicate state for particular aspects of a CustomResourceDefinition

Source
conditions=(conditions : Array(CustomResourceDefinitionCondition) | Nil)

conditions indicate state for particular aspects of a CustomResourceDefinition

Source
observed_generation

The generation observed by the CRD controller.

Source
observed_generation=(observed_generation : Int64 | Nil)

The generation observed by the CRD controller.

Source
stored_versions

storedVersions lists all versions of CustomResources that were ever persisted. Tracking these versions allows a migration path for stored versions in etcd. The field is mutable so a migration controller can finish a migration to another version (ensuring no old objects are left in storage), and then remove the rest of the versions from this list. Versions may not be removed from spec.versions while they exist in this list.

Source
stored_versions=(stored_versions : Array(String) | Nil)

storedVersions lists all versions of CustomResources that were ever persisted. Tracking these versions allows a migration path for stored versions in etcd. The field is mutable so a migration controller can finish a migration to another version (ensuring no old objects are left in storage), and then remove the rest of the versions from this list. Versions may not be removed from spec.versions while they exist in this list.

Source

Macros

field(name, type = nil, **options, &block)

Helper macro for defining fields with automatic camelCase conversion

Source