diff --git a/charts/keycloak/Chart.yaml b/charts/keycloak/Chart.yaml index 69418d28..8c8c7ef8 100644 --- a/charts/keycloak/Chart.yaml +++ b/charts/keycloak/Chart.yaml @@ -3,7 +3,7 @@ apiVersion: v2 type: application name: keycloak description: A Helm chart for Keycloak -version: 0.1.0 +version: 0.1.1 # renovate: image=quay.io/keycloak/keycloak appVersion: "23.0.3" @@ -26,5 +26,5 @@ dependencies: annotations: artifacthub.io/changes: |- - - kind: added - description: 'Implement ingress route and certificate objects.' + - kind: fixed + description: 'Removed wrong ingress route rule.' diff --git a/charts/keycloak/README.md b/charts/keycloak/README.md index 2b999392..8f4357a6 100644 --- a/charts/keycloak/README.md +++ b/charts/keycloak/README.md @@ -2,7 +2,7 @@ > A Helm chart for Keycloak -[![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ](https://charts.pascaliske.dev/charts/keycloak/)[![Version: 0.1.0](https://img.shields.io/badge/Version-0.1.0-informational?style=flat-square) ](https://charts.pascaliske.dev/charts/keycloak/)[![AppVersion: 23.0.3](https://img.shields.io/badge/AppVersion-23.0.3-informational?style=flat-square) ](https://charts.pascaliske.dev/charts/keycloak/) +[![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ](https://charts.pascaliske.dev/charts/keycloak/)[![Version: 0.1.1](https://img.shields.io/badge/Version-0.1.1-informational?style=flat-square) ](https://charts.pascaliske.dev/charts/keycloak/)[![AppVersion: 23.0.3](https://img.shields.io/badge/AppVersion-23.0.3-informational?style=flat-square) ](https://charts.pascaliske.dev/charts/keycloak/) * * diff --git a/charts/keycloak/templates/ingressroute.yaml b/charts/keycloak/templates/ingressroute.yaml index 8dfae787..e4ef952b 100644 --- a/charts/keycloak/templates/ingressroute.yaml +++ b/charts/keycloak/templates/ingressroute.yaml @@ -18,24 +18,13 @@ spec: {{- toYaml . | nindent 4 }} {{- end }} routes: - - kind: Rule - match: '{{ required "Mandatory field \".ingressRoute.rule\" is empty!" .Values.ingressRoute.rule }} && (PathPrefix(`/api`) || PathPrefix(`/dav`) || PathPrefix(`/.well-known`))' - services: - - kind: Service - name: {{ printf "%s-web" (include "keycloak.fullname" . ) }} - namespace: {{ .Release.Namespace }} - port: {{ .Values.ports.api.port }} - {{- with .Values.ingressRoute.middlewares }} - middlewares: - {{- toYaml . | nindent 8 }} - {{- end }} - kind: Rule match: {{ required "Mandatory field \".ingressRoute.rule\" is empty!" .Values.ingressRoute.rule }} services: - kind: Service - name: {{ printf "%s-web" (include "keycloak.fullname" . ) }} + name: {{ include "keycloak.fullname" . }} namespace: {{ .Release.Namespace }} - port: {{ .Values.ports.frontend.port }} + port: {{ .Values.ports.http.port }} {{- with .Values.ingressRoute.middlewares }} middlewares: {{- toYaml . | nindent 8 }}