Last updated 9 months ago
Get the list of Ingresses in the specified cluster and namespace.
OK
"2023-01-12 08:33:06"
Endpoint list
"nginx"
Ingress name
"api"
Namespace name
"cocktail-system"
const response = await fetch('/v1/clusters/{clusterId}/namespaces/{namespaceName}/ingresses', { method: 'GET', headers: {}, }); const data = await response.json();
[ { "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" } ]