Added checksums to configmaps to enable pod restart on configmap change. (#18600)
* Added support for Keycloak admin secret Added support to change endpoint-watcher image Signed-off-by: Eric Ladouceur <eric.ladouceur@cyber.gc.ca> * Added user feedback and validation for Keycloak password Signed-off-by: Eric Ladouceur <eric.ladouceur@cyber.gc.ca> * Apply suggestions from code review Signed-off-by: Eric Ladouceur <eric.ladouceur@cyber.gc.ca> Co-authored-by: Anatolii Bazko <abazko@redhat.com> * Apply suggestions from code review Signed-off-by: Eric Ladouceur <eric.ladouceur@cyber.gc.ca> Co-authored-by: Anatolii Bazko <abazko@redhat.com> * Added checksums to configmap to enable pod restart on configmap change. Signed-off-by: Eric Ladouceur <eric.ladouceur@cyber.gc.ca> Co-authored-by: Anatolii Bazko <abazko@redhat.com>7.24.x
parent
664b3d3bac
commit
8b0e5e070d
|
|
@ -31,6 +31,8 @@ spec:
|
|||
labels:
|
||||
app: che
|
||||
component: devfile-registry
|
||||
annotations:
|
||||
checksum/config: {{ include (print $.Template.BasePath "/configmap.yaml") . | sha256sum }}
|
||||
spec:
|
||||
containers:
|
||||
- image: {{ .Values.cheDevfileRegistry.image }}
|
||||
|
|
|
|||
|
|
@ -31,6 +31,8 @@ spec:
|
|||
labels:
|
||||
app: che
|
||||
component: plugin-registry
|
||||
annotations:
|
||||
checksum/config: {{ include (print $.Template.BasePath "/configmap.yaml") . | sha256sum }}
|
||||
spec:
|
||||
containers:
|
||||
- image: {{ .Values.chePluginRegistry.image }}
|
||||
|
|
|
|||
|
|
@ -27,6 +27,8 @@ spec:
|
|||
labels:
|
||||
app: che
|
||||
component: che
|
||||
annotations:
|
||||
checksum/config: {{ include (print $.Template.BasePath "/configmap.yaml") . | sha256sum }}
|
||||
spec:
|
||||
securityContext:
|
||||
fsGroup: {{ .Values.global.securityContext.fsGroup }}
|
||||
|
|
|
|||
Loading…
Reference in New Issue