[bitnami/spring-cloud-dataflow] Add deployer.imagePullSecrets property (#8597)

* Add deployer.imagePullSecrets property

* Correct values.yaml

* Add SCDF server configmap too

* Update bitnami/spring-cloud-dataflow/values.yaml

Co-authored-by: nico <nico@nico-VirtualBox>
Co-authored-by: Carlos Rodríguez Hernández <carrodher1179@gmail.com>
This commit is contained in:
CEDDM
2022-01-10 09:11:07 +01:00
committed by GitHub
parent 5e2f9dc369
commit 8fae03e02f
5 changed files with 11 additions and 1 deletions

View File

@@ -39,4 +39,4 @@ sources:
- https://github.com/bitnami/bitnami-docker-spring-cloud-dataflow
- https://github.com/bitnami/bitnami-docker-spring-cloud-skipper
- https://dataflow.spring.io/
version: 5.0.0
version: 5.0.1

View File

@@ -285,6 +285,7 @@ helm uninstall my-release
| `deployer.volumes` | Streaming applications extra volumes | `{}` |
| `deployer.environmentVariables` | Streaming applications environment variables | `[]` |
| `deployer.podSecurityContext.runAsUser` | Set Dataflow Streams container's Security Context runAsUser | `1001` |
| `deployer.imagePullSecrets` | Streaming applications imagePullSecrets | `[]` |
### RBAC parameters

View File

@@ -67,6 +67,9 @@ data:
{{- if .Values.deployer.podSecurityContext }}
podSecurityContext: {{- toYaml .Values.deployer.podSecurityContext | nindent 22 }}
{{- end }}
{{- if .Values.deployer.imagePullSecrets }}
imagePullSecrets: {{- toYaml .Values.deployer.imagePullSecrets | nindent 22 }}
{{- end }}
{{- end }}
{{- if .Values.server.configuration.containerRegistries }}
container:

View File

@@ -96,6 +96,9 @@ data:
{{- if .Values.deployer.podSecurityContext }}
podSecurityContext: {{- toYaml .Values.deployer.podSecurityContext | nindent 22 }}
{{- end }}
{{- if .Values.deployer.imagePullSecrets }}
imagePullSecrets: {{- toYaml .Values.deployer.imagePullSecrets | nindent 22 }}
{{- end }}
{{- $hibernateDialect := include "scdf.database.hibernate.dialect" . }}
{{- if $hibernateDialect }}
jpa:

View File

@@ -983,6 +983,9 @@ deployer:
##
podSecurityContext:
runAsUser: 1001
## @param deployer.imagePullSecrets Streaming applications imagePullSecrets
##
imagePullSecrets: []
## @section RBAC parameters