diff --git a/charts/keycloak/Chart.yaml b/charts/keycloak/Chart.yaml index 278a882..86107d7 100644 --- a/charts/keycloak/Chart.yaml +++ b/charts/keycloak/Chart.yaml @@ -15,10 +15,10 @@ 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: 1.1.2 +version: 1.1.3 # 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 # follow Semantic Versioning. They should reflect the version the application is using. # It is recommended to use it with quotes. -appVersion: "19.0.1" +appVersion: "19.0.2" diff --git a/charts/keycloak/templates/deployment.yaml b/charts/keycloak/templates/deployment.yaml index 33c9ddb..b33d20d 100644 --- a/charts/keycloak/templates/deployment.yaml +++ b/charts/keycloak/templates/deployment.yaml @@ -50,17 +50,19 @@ spec: - name: KC_LOG_LEVEL value: {{ .Values.keycloak.logLevel | default "info" }} - name: KC_PROXY - value: reencrypt + value: edge + - name: KC_HTTP_ENABLED + value: "true" + - name: KC_HTTP_PORT + value: "8080" + - name: KC_HOSTNAME + value: {{ .Values.keycloak.hostname }} - name: KC_DB value: postgres - name: KC_HOSTNAME_STRICT_BACKCHANNEL value: "false" - name: KC_HOSTNAME_STRICT value: "false" - - name: KC_HTTPS_CERTIFICATE_FILE - value: /certs/tls.crt - - name: KC_HTTPS_CERTIFICATE_KEY_FILE - value: /certs/tls.key - name: KEYCLOAK_ADMIN valueFrom: secretKeyRef: diff --git a/charts/keycloak/values.yaml b/charts/keycloak/values.yaml index 8b0ec6e..06e691b 100644 --- a/charts/keycloak/values.yaml +++ b/charts/keycloak/values.yaml @@ -90,3 +90,4 @@ keycloak: cache: local logLevel: info relativePath: "/" + hostname: keycloak.example.com