CustomResourceDefinitionStatus

case class CustomResourceDefinitionStatus(acceptedNames: Optional[CustomResourceDefinitionNames], conditions: Optional[Vector[CustomResourceDefinitionCondition]], storedVersions: Optional[Vector[String]])

CustomResourceDefinitionStatus indicates the state of the CustomResourceDefinition

CustomResourceDefinitionStatus indicates the state of the CustomResourceDefinition

Value Params
conditions

conditions indicate state for particular aspects of a CustomResourceDefinition

storedVersions

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.

Companion
object
trait Serializable
trait Product
trait Equals
class Object
trait Matchable
class Any

Value members

Concrete methods

Gets acceptedNames.

Gets acceptedNames.

If the field is not present, fails with com.coralogix.zio.k8s.client.UndefinedField.

conditions indicate state for particular aspects of a CustomResourceDefinition

conditions indicate state for particular aspects of a CustomResourceDefinition

If the field is not present, fails with com.coralogix.zio.k8s.client.UndefinedField.

def getStoredVersions: IO[K8sFailure, Vector[String]]

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.

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.

If the field is not present, fails with com.coralogix.zio.k8s.client.UndefinedField.

Inherited methods

def productElementNames: Iterator[String]
Inherited from
Product
def productIterator: Iterator[Any]
Inherited from
Product