Status#

pydantic model phalanx.models.kubernetes.Status#

The status field of a Kubernetes resource.

Parameters:

data (Any)

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

Fields:
field conditions: list[Condition] = []#