Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix: return all http routes of a namespace (k8s) #4865

Merged
merged 3 commits into from
Mar 3, 2025
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 7 additions & 8 deletions src/utils/kubernetes/httproute-list.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { CustomObjectsApi, CoreV1Api } from "@kubernetes/client-node";
import { CoreV1Api, CustomObjectsApi } from "@kubernetes/client-node";

import { getKubernetes, getKubeConfig, HTTPROUTE_API_GROUP, HTTPROUTE_API_VERSION } from "utils/config/kubernetes";
import { getKubeConfig, getKubernetes, HTTPROUTE_API_GROUP, HTTPROUTE_API_VERSION } from "utils/config/kubernetes";
import createLogger from "utils/logger";

const logger = createLogger("httproute-list");
Expand All @@ -14,7 +14,7 @@ export default async function listHttpRoute() {

if (gateway) {
// httproutes
const getHttpRoute = async (namespace) =>
const getHttpRoutes = async (namespace) =>
crd
.listNamespacedCustomObject({
group: HTTPROUTE_API_GROUP,
Expand All @@ -23,8 +23,7 @@ export default async function listHttpRoute() {
plural: "httproutes",
})
.then((response) => {
const [httpRoute] = response.items;
return httpRoute;
return response.items;
})
.catch((error) => {
logger.error("Error getting httproutes: %d %s %s", error.statusCode, error.body, error.response);
Expand All @@ -44,12 +43,12 @@ export default async function listHttpRoute() {
if (namespaces) {
const httpRouteListUnfiltered = await Promise.all(
namespaces.map(async (namespace) => {
const httpRoute = await getHttpRoute(namespace);
return httpRoute;
const httpRoutes = await getHttpRoutes(namespace);
return httpRoutes;
}),
);

httpRouteList = httpRouteListUnfiltered.filter((httpRoute) => httpRoute !== undefined);
httpRouteList = httpRouteListUnfiltered.flat().filter((httpRoute) => httpRoute !== undefined);
}
}
return httpRouteList;
Expand Down