Get cluster namespace ingress list

Get cluster namespace ingress list

get

Get the list of Ingresses in the specified cluster and namespace.

Path parameters
clusterIdstringRequired
namespaceNamestringRequired
Responses
200
OK
*/*
get
GET /v1/clusters/{clusterId}/namespaces/{namespaceName}/ingresses HTTP/1.1
Host: 
Accept: */*
200

OK

[
  {
    "annotations": {
      "nginx.ingress.kubernetes.io/ssl-redirect": "false"
    },
    "creationTimestamp": "2023-01-12 08:33:06",
    "endpoints": [
      "0.0.0.0"
    ],
    "ingressControllerName": "nginx",
    "labels": {
      "app": "api"
    },
    "name": "api",
    "namespace": "cocktail-system"
  }
]

Last updated

Was this helpful?