Change: re-enable k8s ingress by default (#4988)

This commit is contained in:
shamoon 2025-03-16 02:35:43 -07:00 committed by GitHub
parent 564dfb7ce3
commit 95507aab54
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 3 additions and 4 deletions

View file

@ -8,7 +8,7 @@ const kc = getKubeConfig();
export default async function listIngress() {
const networking = kc.makeApiClient(NetworkingV1Api);
const { ingress } = getKubernetes();
const { ingress = true } = getKubernetes();
let ingressList = [];
if (ingress) {