Skip to content

Commit dd25bf2

Browse files
svcAPLBotmerll
andauthored
chore(chart-deps): update keycloak to version 7.1.5 (#2754)
Co-authored-by: merll <[email protected]>
1 parent 1003005 commit dd25bf2

File tree

6 files changed

+19
-13
lines changed

6 files changed

+19
-13
lines changed

apps.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ appsInfo:
107107
integration: App Platform has security best practices built in, and is designed for intrusion. Istio is used by App Platform as a service mesh to deliver mTLS enforcement for all traffic that is deemed compromisable, egress control to force teams to choose explicit egress endpoints, and advanced routing capabilities such as weight based load balancing (A/B or blue/green testing). Istio is part of the core of App Platform and can not be disabled.
108108
keycloak:
109109
title: Keycloak
110-
appVersion: 26.4.2
110+
appVersion: 26.4.7
111111
repo: https://github.com/keycloak/keycloak
112112
maintainers: Keycloak
113113
relatedLinks:

chart/chart-index/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ dependencies:
5353
repository: https://istio-release.storage.googleapis.com/charts
5454
- name: keycloakx
5555
alias: keycloak
56-
version: 7.1.4
56+
version: 7.1.5
5757
repository: https://codecentric.github.io/helm-charts
5858
- name: knative-operator
5959
version: v1.18.1

charts/keycloak/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
apiVersion: v2
2-
appVersion: 26.4.2
2+
appVersion: 26.4.7
33
description: Keycloak.X - Open Source Identity and Access Management for Modern Applications
44
and Services
55
home: https://www.keycloak.org/
@@ -21,4 +21,4 @@ name: keycloakx
2121
sources:
2222
- https://github.com/codecentric/helm-charts
2323
- https://github.com/keycloak/keycloak/tree/main/quarkus/container
24-
version: 7.1.4
24+
version: 7.1.5

charts/keycloak/README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,6 +151,7 @@ The following table lists the configurable parameters of the Keycloak-X chart an
151151
| `ingress.console.rules[0].paths` | Paths for the Ingress rule for the console | see below |
152152
| `ingress.console.rules[0].paths[0].path` | Path for the Ingress rule for the console | `[{{ tpl .Values.http.relativePath $ \| trimSuffix "/" }}/admin]` |
153153
| `ingress.console.rules[0].paths[0].pathType` | Path Type for the Ingress rule for the console | `Prefix` |
154+
| `ingress.console.labels` | Additional labels for the console ingress only | `{}` |
154155
| `ingress.console.annotations` | Ingress annotations for the console | `{}` |
155156
| `ingress.console.ingressClassName` | The name of the Ingress Class associated with the console ingress | `""` |
156157
| `ingress.console.tls` | TLS configuration | see below |
@@ -180,7 +181,7 @@ The following table lists the configurable parameters of the Keycloak-X chart an
180181
| `database.password` | Database Password | unset |
181182
| `database.database` | Database | unset |
182183
| `database.existingSecret` | Existing Secret containing database password (expects key `password`) | `""` |
183-
| `database.existingSecretKey` | Key in existing Secret containing database password | `""`
184+
| `database.existingSecretKey` | Key in existing Secret containing database password | `""`
184185
| `cache.stack` | Cache / Cluster Discovery, use `custom` to disable automatic configuration. | `default` |
185186
| `proxy.enabled` | If `true`, the `KC_PROXY` env variable will be set to the configured mode | `true` |
186187
| `proxy.mode` | The configured proxy mode | `forwarded` |

charts/keycloak/templates/ingress.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,9 @@ metadata:
6666
{{- range $key, $value := $ingress.labels }}
6767
{{- printf "%s: %s" $key (tpl $value $ | quote) | nindent 4 }}
6868
{{- end }}
69+
{{- range $key, $value := $ingress.console.labels }}
70+
{{- printf "%s: %s" $key (tpl $value $ | quote) | nindent 4 }}
71+
{{- end }}
6972
spec:
7073
{{- if $ingress.console.ingressClassName }}
7174
ingressClassName: {{ $ingress.console.ingressClassName }}

charts/keycloak/values.yaml

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ image:
1111
# The Keycloak image repository
1212
repository: quay.io/keycloak/keycloak
1313
# Overrides the Keycloak image tag whose default is the chart appVersion
14-
tag: "26.4.2"
14+
tag: "26.4.7"
1515
# Overrides the Keycloak image tag with a specific digest
1616
digest: ""
1717
# The Keycloak image pull policy
@@ -305,10 +305,10 @@ ingress:
305305
- path: '{{ tpl .Values.http.relativePath $ | trimSuffix "/" }}/'
306306
pathType: Prefix
307307
# TLS configuration
308-
tls:
309-
- hosts:
310-
- keycloak.example.com
311-
secretName: ""
308+
tls: []
309+
# - hosts:
310+
# - keycloak.example.com
311+
# secretName: ""
312312

313313
# ingress for console only (/auth/admin)
314314
console:
@@ -319,6 +319,8 @@ ingress:
319319
# Ingress annotations for console ingress only
320320
# Useful to set nginx.ingress.kubernetes.io/whitelist-source-range particularly
321321
annotations: {}
322+
# Additional Ingress labels for console path only
323+
labels: {}
322324
rules:
323325
-
324326
# Ingress host
@@ -330,9 +332,9 @@ ingress:
330332

331333
# Console TLS configuration
332334
tls: []
333-
# - hosts:
334-
# - console.keycloak.example.com
335-
# secretName: ""
335+
# - hosts:
336+
# - console.keycloak.example.com
337+
# secretName: ""
336338

337339
## Network policy configuration
338340
# https://kubernetes.io/docs/concepts/services-networking/network-policies/

0 commit comments

Comments
 (0)