From 98a4c8c21ada4b9dcc9983853deb749208bc53d1 Mon Sep 17 00:00:00 2001 From: Sebastian Mark Date: Wed, 9 Oct 2024 17:17:53 +0200 Subject: [PATCH] feat(podinfo): enable ingress for podinfo service MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - add ingress configuration to podinfo manifest - set replicaCount to 2 for scaling - define host and path for ingress routing 🤖 --- manifests/podinfo.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/manifests/podinfo.yml b/manifests/podinfo.yml index 3d4c887..165f826 100644 --- a/manifests/podinfo.yml +++ b/manifests/podinfo.yml @@ -29,3 +29,10 @@ spec: namespace: flux2 values: replicaCount: 2 + ingress: + enabled: true + hosts: + - host: podinfo.internal + paths: + - path: / + pathType: ImplementationSpecific