mirror of
https://github.com/DI0IK/homepage-plus.git
synced 2025-07-08 22:48:46 +00:00
Maybe handle k8s traefik ingress routes returns nothing
This commit is contained in:
parent
6c682cb648
commit
a72a27a8b5
1 changed files with 2 additions and 2 deletions
|
@ -166,7 +166,7 @@ export async function servicesFromKubernetes() {
|
||||||
|
|
||||||
const traefikIngressListContaino = await crd
|
const traefikIngressListContaino = await crd
|
||||||
.listClusterCustomObject("traefik.containo.us", "v1alpha1", "ingressroutes")
|
.listClusterCustomObject("traefik.containo.us", "v1alpha1", "ingressroutes")
|
||||||
.then((response) => response.body)
|
.then((response) => response.body ?? [])
|
||||||
.catch(async (error) => {
|
.catch(async (error) => {
|
||||||
if (![403, 404].includes(error.statusCode)) {
|
if (![403, 404].includes(error.statusCode)) {
|
||||||
logger.error(
|
logger.error(
|
||||||
|
@ -182,7 +182,7 @@ export async function servicesFromKubernetes() {
|
||||||
|
|
||||||
const traefikIngressListIo = await crd
|
const traefikIngressListIo = await crd
|
||||||
.listClusterCustomObject("traefik.io", "v1alpha1", "ingressroutes")
|
.listClusterCustomObject("traefik.io", "v1alpha1", "ingressroutes")
|
||||||
.then((response) => response.body)
|
.then((response) => response.body ?? [])
|
||||||
.catch(async (error) => {
|
.catch(async (error) => {
|
||||||
if (![403, 404].includes(error.statusCode)) {
|
if (![403, 404].includes(error.statusCode)) {
|
||||||
logger.error(
|
logger.error(
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue