mirror of
https://github.com/gethomepage/homepage.git
synced 2025-12-07 09:35:54 -08:00
k8s: Support app ingress annotation (#2198)
This commit is contained in:
@@ -45,7 +45,7 @@ export default async function handler(req, res) {
|
||||
|
||||
if (pods.length === 0) {
|
||||
res.status(404).send({
|
||||
error: "not found"
|
||||
error: `no pods found with namespace=${namespace} and labelSelector=${labelSelector}`,
|
||||
});
|
||||
return;
|
||||
}
|
||||
|
||||
@@ -42,7 +42,7 @@ export default async function handler(req, res) {
|
||||
|
||||
if (pods.length === 0) {
|
||||
res.status(404).send({
|
||||
error: "not found",
|
||||
error: `no pods found with namespace=${namespace} and labelSelector=${labelSelector}`,
|
||||
});
|
||||
return;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user