IngressList

A list of Ingress objects.

Container OrchestrationKubernetesLoad BalancingNetworkingService Discovery

Properties

Name Type Description
apiVersion string
kind string
metadata object
items array
View JSON Schema on GitHub

JSON Schema

kubernetes-services-ingresslist-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/IngressList",
  "title": "IngressList",
  "type": "object",
  "description": "A list of Ingress objects.",
  "required": [
    "items"
  ],
  "properties": {
    "apiVersion": {
      "type": "string"
    },
    "kind": {
      "type": "string",
      "const": "IngressList"
    },
    "metadata": {
      "$ref": "#/components/schemas/ListMeta"
    },
    "items": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Ingress"
      }
    }
  }
}