From cdcbfd4ee92a7b1c3945c4520634b30f4abf8c87 Mon Sep 17 00:00:00 2001 From: boomam <37086258+boomam@users.noreply.github.com> Date: Mon, 6 Nov 2023 08:54:52 -0500 Subject: [PATCH] Create ingress.yaml --- helm-chart/templates/ingress.yaml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 helm-chart/templates/ingress.yaml diff --git a/helm-chart/templates/ingress.yaml b/helm-chart/templates/ingress.yaml new file mode 100644 index 0000000..44b0871 --- /dev/null +++ b/helm-chart/templates/ingress.yaml @@ -0,0 +1,16 @@ +apiVersion: networking.k8s.io/v1 +kind: Ingress +metadata: + name: ladder-ingress +spec: + rules: + - host: "{{ .Values.ingress.HOST }}" + http: + paths: + - path: / + pathType: Prefix + backend: + service: + name: ladder-service + port: + number: {{ .Values.ingress.PORT }}