Skip to content
This repository has been archived by the owner on Feb 22, 2022. It is now read-only.

Commit

Permalink
[stable/keycloak] Upgrade to 4.1.0.Final (#6498)
Browse files Browse the repository at this point in the history
- Upgrade Keycloak to 4.1.0.Final
- Upgrade Postgres dependency to 0.15.0
- Fix default pod anti-affinity to not consider test pods
  • Loading branch information
unguiculus authored and k8s-ci-robot committed Jul 7, 2018
1 parent 161c0d3 commit 83f5ec2
Show file tree
Hide file tree
Showing 6 changed files with 19 additions and 8 deletions.
4 changes: 2 additions & 2 deletions stable/keycloak/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: keycloak
version: 3.0.2
appVersion: 4.0.0.Final
version: 3.1.0
appVersion: 4.1.0.Final
description: Open Source Identity and Access Management For Modern Applications and Services
keywords:
- sso
Expand Down
2 changes: 1 addition & 1 deletion stable/keycloak/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ Parameter | Description | Default
`init.image.pullPolicy` | Init image pull policy | `IfNotPresent`
`keycloak.replicas` | The number of Keycloak replicas | `1`
`keycloak.image.repository` | The Keycloak image repository | `jboss/keycloak`
`keycloak.image.tag` | The Keycloak image tag | `4.0.0.Final`
`keycloak.image.tag` | The Keycloak image tag | `4.1.0.Final`
`keycloak.image.pullPolicy` | The Keycloak image pull policy | `IfNotPresent`
`keycloak.image.pullSecrets` | Image pull secrets | `[]`
`keycloak.username` | Username for the initial Keycloak admin user | `keycloak`
Expand Down
6 changes: 3 additions & 3 deletions stable/keycloak/requirements.lock
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
dependencies:
- name: postgresql
repository: https://kubernetes-charts.storage.googleapis.com/
version: 0.12.0
digest: sha256:65c01bdcc4661db1599d2e54feb0c7084434c5ce8a46db842c16b58e41a452cc
generated: 2018-05-14T09:04:06.443862206+02:00
version: 0.15.0
digest: sha256:428d8302be9a566a3e77538af30c56b63e0bfc97dd01dd434f303f4434cb8100
generated: 2018-07-06T08:41:15.715456938+02:00
2 changes: 1 addition & 1 deletion stable/keycloak/requirements.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
dependencies:
- name: postgresql
version: 0.12.0
version: 0.15.0
repository: https://kubernetes-charts.storage.googleapis.com/
condition: keycloak.persistence.deployPostgres
1 change: 1 addition & 0 deletions stable/keycloak/templates/test/test-pod.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ metadata:
chart: {{ template "keycloak.chart" . }}
release: "{{ .Release.Name }}"
heritage: "{{ .Release.Service }}"
role: test
annotations:
"helm.sh/hook": test-success
spec:
Expand Down
12 changes: 11 additions & 1 deletion stable/keycloak/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ keycloak:

image:
repository: jboss/keycloak
tag: 4.0.0.Final
tag: 4.1.0.Final
pullPolicy: IfNotPresent

## Optionally specify an array of imagePullSecrets.
Expand Down Expand Up @@ -59,6 +59,11 @@ keycloak:
matchLabels:
app: {{ template "keycloak.name" . }}
release: "{{ .Release.Name }}"
matchExpressions:
- key: role
operator: NotIn
values:
- test
topologyKey: kubernetes.io/hostname
preferredDuringSchedulingIgnoredDuringExecution:
- weight: 100
Expand All @@ -67,6 +72,11 @@ keycloak:
matchLabels:
app: {{ template "keycloak.name" . }}
release: "{{ .Release.Name }}"
matchExpressions:
- key: role
operator: NotIn
values:
- test
topologyKey: failure-domain.beta.kubernetes.io/zone
nodeSelector: {}
Expand Down

0 comments on commit 83f5ec2

Please sign in to comment.