[bitnami/argo-workflows] fix: 🔒 Do not use the default service account (#21990)

Signed-off-by: Javier Salmeron Garcia <jsalmeron@vmware.com>
This commit is contained in:
Javier J. Salmerón-García
2024-01-15 10:14:16 +01:00
committed by GitHub
parent 6095ce12ca
commit 265631b1d9
3 changed files with 9 additions and 9 deletions

View File

@@ -42,4 +42,4 @@ maintainers:
name: argo-workflows
sources:
- https://github.com/bitnami/charts/tree/main/bitnami/argo-workflows
version: 6.1.4
version: 6.1.5

View File

@@ -334,13 +334,13 @@ The command removes all the Kubernetes components associated with the chart and
### Workflows configuration
| Name | Description | Value |
| ------------------------------------------------------- | ------------------------------------------------------------------------------------------ | ------- |
| `workflows.serviceAccount.create` | Whether to create a service account to run workflows | `false` |
| `workflows.serviceAccount.name` | Service account name to run workflows | `""` |
| `workflows.serviceAccount.automountServiceAccountToken` | Automount service account token for the workflows service account | `true` |
| `workflows.serviceAccount.annotations` | Annotations for service account. Evaluated as a template. Only used if `create` is `true`. | `{}` |
| `workflows.rbac.create` | Whether to create RBAC resource to run workflows | `true` |
| Name | Description | Value |
| ------------------------------------------------------- | ------------------------------------------------------------------------------------------ | ------ |
| `workflows.serviceAccount.create` | Whether to create a service account to run workflows | `true` |
| `workflows.serviceAccount.name` | Service account name to run workflows | `""` |
| `workflows.serviceAccount.automountServiceAccountToken` | Automount service account token for the workflows service account | `true` |
| `workflows.serviceAccount.annotations` | Annotations for service account. Evaluated as a template. Only used if `create` is `true`. | `{}` |
| `workflows.rbac.create` | Whether to create RBAC resource to run workflows | `true` |
### PostgreSQL subchart

View File

@@ -1155,7 +1155,7 @@ workflows:
## @param workflows.serviceAccount.annotations Annotations for service account. Evaluated as a template. Only used if `create` is `true`.
##
serviceAccount:
create: false
create: true
name: ""
automountServiceAccountToken: true
annotations: {}