diff --git a/charts/bouncer/Chart.yaml b/charts/bouncer/Chart.yaml index 263ecdf..633af75 100644 --- a/charts/bouncer/Chart.yaml +++ b/charts/bouncer/Chart.yaml @@ -15,7 +15,7 @@ type: application # This is the chart version. This version number should be incremented each time you make changes # to the chart and its templates, including the app version. # Versions are expected to follow Semantic Versioning (https://semver.org/) -version: 0.2.0 +version: 0.3.0 # This is the version number of the application being deployed. This version number should be # incremented each time you make changes to the application. Versions are not expected to diff --git a/charts/bouncer/templates/ingress.yaml b/charts/bouncer/templates/ingress.yaml index be58348..0de950c 100644 --- a/charts/bouncer/templates/ingress.yaml +++ b/charts/bouncer/templates/ingress.yaml @@ -13,21 +13,14 @@ metadata: {{- end }} spec: rules: - - host: {{ .Values.ingress.host }} - http: - paths: - - backend: - service: - name: ssl-redirect - port: - number: use-annotation - path: / - pathType: Prefix - - backend: - service - name: {{ .Values.ingress.serviceName }} - port: - number: {{ .Values.ingress.servicePort }} - path: / - pathType: Prefix + - host: {{ .Values.ingress.host | quote }} + http: + paths: + - path: "/" + pathType: "Prefix" + backend: + service: + name: {{ .Values.ingress.serviceName | quote }} + port: + number: {{ .Values.ingress.servicePort }} {{- end }} diff --git a/charts/bouncer/values.yaml b/charts/bouncer/values.yaml index f8226e1..8fc68bf 100644 --- a/charts/bouncer/values.yaml +++ b/charts/bouncer/values.yaml @@ -41,8 +41,11 @@ service: port: 80 ingress: - enabled: false + enabled: true + servicePort: 80 + serviceName: bouncer annotations: {} + host: "test" # kubernetes.io/ingress.class: nginx # kubernetes.io/tls-acme: "true" hosts: