Maybe handle k8s traefik ingress routes returns nothing

pull/2023/head
shamoon 9 months ago
parent 6c682cb648
commit a72a27a8b5

@ -166,7 +166,7 @@ export async function servicesFromKubernetes() {
const traefikIngressListContaino = await crd
.listClusterCustomObject("traefik.containo.us", "v1alpha1", "ingressroutes")
.then((response) => response.body)
.then((response) => response.body ?? [])
.catch(async (error) => {
if (![403, 404].includes(error.statusCode)) {
logger.error(
@ -182,7 +182,7 @@ export async function servicesFromKubernetes() {
const traefikIngressListIo = await crd
.listClusterCustomObject("traefik.io", "v1alpha1", "ingressroutes")
.then((response) => response.body)
.then((response) => response.body ?? [])
.catch(async (error) => {
if (![403, 404].includes(error.statusCode)) {
logger.error(

Loading…
Cancel
Save