feat: kubernetes keycloak deployment strategy (#17304)

* feat: kubernetes keycloak deployment strategy

Allow to set the deployment strategy, the default RollingUpdate fail
if multiattach is not supported by volumes

Signed-off-by: Jean-François Monnier <kessler.dev@gmail.com>

* Update deploy/kubernetes/helm/che/custom-charts/che-keycloak/values.yaml

Signed-off-by: Jean-François Monnier <kessler.dev@gmail.com>
Co-authored-by: Serhii Leshchenko <sleshche@redhat.com>

Co-authored-by: Serhii Leshchenko <sleshche@redhat.com>
7.20.x
Kessler 2020-09-23 09:28:16 +02:00 committed by GitHub
parent b13cd0f16d
commit ecdb54e807
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 0 deletions

View File

@ -21,6 +21,8 @@ spec:
matchLabels:
app: che
component: keycloak
strategy:
type: {{ .Values.deploymentStrategy }}
template:
metadata:
labels:

View File

@ -15,3 +15,4 @@ image: quay.io/eclipse/che-keycloak:nightly
requireAdminPasswordChange: true
keycloakAdminUserName: admin
keycloakAdminUserPassword: admin
deploymentStrategy: RollingUpdate