EndpointSliceList

A list of EndpointSlice 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-endpointslicelist-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/EndpointSliceList",
  "title": "EndpointSliceList",
  "type": "object",
  "description": "A list of EndpointSlice objects.",
  "required": [
    "items"
  ],
  "properties": {
    "apiVersion": {
      "type": "string"
    },
    "kind": {
      "type": "string",
      "const": "EndpointSliceList"
    },
    "metadata": {
      "$ref": "#/components/schemas/ListMeta"
    },
    "items": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/EndpointSlice"
      }
    }
  }
}