diff options
Diffstat (limited to 'docs/sections/resources/yaml')
-rw-r--r-- | docs/sections/resources/yaml/common-gateway.yaml | 2 | ||||
-rw-r--r-- | docs/sections/resources/yaml/keycloak-ingress.yaml | 6 | ||||
-rw-r--r-- | docs/sections/resources/yaml/keycloak-server-values.yaml | 7 |
3 files changed, 10 insertions, 5 deletions
diff --git a/docs/sections/resources/yaml/common-gateway.yaml b/docs/sections/resources/yaml/common-gateway.yaml index 3cc1cc55bc..cc6ed61a6d 100644 --- a/docs/sections/resources/yaml/common-gateway.yaml +++ b/docs/sections/resources/yaml/common-gateway.yaml @@ -1,4 +1,4 @@ -apiVersion: gateway.networking.k8s.io/v1beta1 +apiVersion: gateway.networking.k8s.io/v1 kind: Gateway metadata: name: common-gateway diff --git a/docs/sections/resources/yaml/keycloak-ingress.yaml b/docs/sections/resources/yaml/keycloak-ingress.yaml index 91fc34f381..9318b374e2 100644 --- a/docs/sections/resources/yaml/keycloak-ingress.yaml +++ b/docs/sections/resources/yaml/keycloak-ingress.yaml @@ -24,7 +24,7 @@ spec: Matches: Path: Type: PathPrefix - Value: /auth + Value: / --- apiVersion: gateway.networking.k8s.io/v1 kind: HTTPRoute @@ -46,10 +46,10 @@ spec: - backendRefs: - group: "" kind: Service - name: keycloak-keycloakx-http + name: keycloak-http port: 80 weight: 1 matches: - path: type: PathPrefix - value: /auth + value: / diff --git a/docs/sections/resources/yaml/keycloak-server-values.yaml b/docs/sections/resources/yaml/keycloak-server-values.yaml index 516a26a76b..52bf5a9809 100644 --- a/docs/sections/resources/yaml/keycloak-server-values.yaml +++ b/docs/sections/resources/yaml/keycloak-server-values.yaml @@ -1,12 +1,17 @@ --- +fullnameOverride: keycloak + +image: + tag: "26.0.6" + command: - "/opt/keycloak/bin/kc.sh" - "--verbose" - "start" + - "--proxy-headers=forwarded" - "--http-enabled=true" - "--http-port=8080" - "--hostname-strict=false" - - "--hostname-strict-https=false" - "--spi-events-listener-jboss-logging-success-level=info" - "--spi-events-listener-jboss-logging-error-level=warn" |