GafaelfawrIngressMetadata

pydantic model gafaelfawr.models.kubernetes.GafaelfawrIngressMetadata

Metadata used to create an Ingress object.

Parameters:

data (Any)

Show JSON schema
{
   "title": "GafaelfawrIngressMetadata",
   "description": "Metadata used to create an ``Ingress`` object.",
   "type": "object",
   "properties": {
      "name": {
         "title": "Name",
         "type": "string"
      },
      "annotations": {
         "additionalProperties": {
            "type": "string"
         },
         "title": "Annotations",
         "type": "object"
      },
      "labels": {
         "anyOf": [
            {
               "additionalProperties": {
                  "type": "string"
               },
               "type": "object"
            },
            {
               "type": "null"
            }
         ],
         "default": null,
         "title": "Labels"
      }
   },
   "required": [
      "name"
   ]
}

Fields:
field annotations: dict[str, str] [Optional]

Annotations to add to the ingress.

field labels: dict[str, str] | None = None

Labels to add to the ingress.

field name: str [Required]

Name of the ingress.