From ec6fe3cfddf9f8603af684cfb9e572a412d0640e Mon Sep 17 00:00:00 2001 From: vitaliy Date: Tue, 18 Nov 2025 01:04:42 +0300 Subject: [PATCH] cd: edit monifest --- helm/templates/ingress.yaml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 helm/templates/ingress.yaml diff --git a/helm/templates/ingress.yaml b/helm/templates/ingress.yaml new file mode 100644 index 0000000..2c9d61b --- /dev/null +++ b/helm/templates/ingress.yaml @@ -0,0 +1,18 @@ +apiVersion: networking.k8s.io/v1 +kind: Ingress +metadata: + name: hello-world-ingress + annotations: + traefik.ingress.kubernetes.io/router.entrypoints: web +spec: + rules: + - host: hello-world.local + http: + paths: + - path: / + pathType: Prefix + backend: + service: + name: hello-world-service + port: + number: 80 \ No newline at end of file