mirror of
https://github.com/bitnami/charts.git
synced 2026-03-10 15:07:49 +08:00
[bitnami/spring-cloud-dataflow] Support taskServiceAccountName (#26450)
* [bitnami/spring-cloud-dataflow] Support taskServiceAccountName Signed-off-by: Grzegorz Kołakowski <grzegorz8@gmail.com> * Update CHANGELOG.md Signed-off-by: Bitnami Containers <bitnami-bot@vmware.com> * Update CHANGELOG.md Signed-off-by: Bitnami Containers <bitnami-bot@vmware.com> --------- Signed-off-by: Grzegorz Kołakowski <grzegorz8@gmail.com> Signed-off-by: Bitnami Containers <bitnami-bot@vmware.com> Co-authored-by: Bitnami Containers <bitnami-bot@vmware.com>
This commit is contained in:
committed by
GitHub
parent
c8a11426b1
commit
a09c51b4c4
@@ -1,8 +1,12 @@
|
||||
# Changelog
|
||||
|
||||
## 29.0.1 (2024-05-27)
|
||||
## 29.0.2 (2024-05-28)
|
||||
|
||||
* [bitnami/spring-cloud-dataflow] Release 29.0.1 ([#26457](https://github.com/bitnami/charts/pull/26457))
|
||||
* [bitnami/spring-cloud-dataflow] Support taskServiceAccountName ([#26450](https://github.com/bitnami/charts/pull/26450))
|
||||
|
||||
## <small>29.0.1 (2024-05-27)</small>
|
||||
|
||||
* [bitnami/spring-cloud-dataflow] Release 29.0.1 (#26457) ([e0b6418](https://github.com/bitnami/charts/commit/e0b641821fa1d5bdf74fb33dfa94dd31ebcfa6c8)), closes [#26457](https://github.com/bitnami/charts/issues/26457)
|
||||
|
||||
## 29.0.0 (2024-05-27)
|
||||
|
||||
|
||||
@@ -53,4 +53,4 @@ maintainers:
|
||||
name: spring-cloud-dataflow
|
||||
sources:
|
||||
- https://github.com/bitnami/charts/tree/main/bitnami/spring-cloud-dataflow
|
||||
version: 29.0.1
|
||||
version: 29.0.2
|
||||
|
||||
@@ -522,6 +522,7 @@ As an alternative, you can use the preset configurations for pod affinity, pod a
|
||||
| `deployer.secretRefs` | Streaming applications secretRefs | `[]` |
|
||||
| `deployer.entryPointStyle` | An entry point style affects how application properties are passed to the container to be deployed. Allowed values: exec (default), shell, boot | `exec` |
|
||||
| `deployer.imagePullPolicy` | An image pull policy defines when a Docker image should be pulled to the local registry. Allowed values: IfNotPresent (default), Always, Never | `IfNotPresent` |
|
||||
| `deployer.taskServiceAccountName` | Custom service account for scheduled tasks | `""` |
|
||||
|
||||
### RBAC parameters
|
||||
|
||||
|
||||
@@ -85,6 +85,9 @@ data:
|
||||
{{- if .Values.deployer.entryPointStyle }}
|
||||
entryPointStyle: {{ .Values.deployer.entryPointStyle }}
|
||||
{{- end }}
|
||||
{{- if .Values.deployer.taskServiceAccountName }}
|
||||
taskServiceAccountName: {{ .Values.deployer.taskServiceAccountName }}
|
||||
{{- end }}
|
||||
{{- end }}
|
||||
{{- if .Values.server.configuration.containerRegistries }}
|
||||
container:
|
||||
|
||||
@@ -1233,6 +1233,9 @@ deployer:
|
||||
## @param deployer.imagePullPolicy An image pull policy defines when a Docker image should be pulled to the local registry. Allowed values: IfNotPresent (default), Always, Never
|
||||
## ref: https://docs.spring.io/spring-cloud-dataflow/docs/current/reference/htmlsingle/#_image_pull_policy
|
||||
imagePullPolicy: IfNotPresent
|
||||
## @param deployer.taskServiceAccountName Custom service account for scheduled tasks
|
||||
## ref: https://docs.spring.io/spring-cloud-dataflow/docs/current/reference/htmlsingle/#_service_account
|
||||
taskServiceAccountName: ""
|
||||
## @section RBAC parameters
|
||||
|
||||
## K8s Service Account.
|
||||
|
||||
Reference in New Issue
Block a user