Condition#

pydantic model phalanx.models.kubernetes.Condition#

A Kubernetes condition.

Parameters:

data (Any)

Show JSON schema
{
   "title": "Condition",
   "description": "A Kubernetes condition.",
   "type": "object",
   "properties": {
      "type": {
         "title": "Type",
         "type": "string"
      },
      "status": {
         "$ref": "#/$defs/ConditionStatus"
      }
   },
   "$defs": {
      "ConditionStatus": {
         "description": "Valid values for the spec.type field of a Service.",
         "enum": [
            "True",
            "False",
            "Unknown"
         ],
         "title": "ConditionStatus",
         "type": "string"
      }
   },
   "required": [
      "type",
      "status"
   ]
}

Fields:
field status: ConditionStatus [Required]#

The status of the condition.

field type: str [Required]#

The type of condition.