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 }}