mirror of
https://github.com/wahyd4/charts.git
synced 2026-08-09 05:06:29 +10:00
[bitnami/argo-workflows] Fix persistence archive configMap rendering (#13812)
* [bitnami/wordpress] Release 15.2.17 (#13798) * [bitnami/wordpress] Release 15.2.17 updating components versions Signed-off-by: Bitnami Containers <bitnami-bot@vmware.com> * Update README.md with readme-generator-for-helm Signed-off-by: Bitnami Containers <bitnami-bot@vmware.com> Signed-off-by: Bitnami Containers <bitnami-bot@vmware.com> Signed-off-by: Mauro Franchini <mau.mdq@gmail.com> * Fix archive template, update readme and bump version Signed-off-by: Mauro Franchini <mau.mdq@gmail.com> Signed-off-by: Bitnami Containers <bitnami-bot@vmware.com> Signed-off-by: Mauro Franchini <mau.mdq@gmail.com> Co-authored-by: Bitnami Bot <bitnami-bot@vmware.com>
This commit is contained in:
co-authored by
Bitnami Bot
parent
1bd6e1d8d2
commit
2e86826cf1
@@ -35,4 +35,4 @@ sources:
|
||||
- https://github.com/bitnami/containers/tree/main/bitnami/argo-workflow-controller
|
||||
- https://github.com/bitnami/containers/tree/main/bitnami/argo-workflow-exec
|
||||
- https://argoproj.github.io/workflows/
|
||||
version: 5.0.2
|
||||
version: 5.1.0
|
||||
|
||||
@@ -226,6 +226,7 @@ The command removes all the Kubernetes components associated with the chart and
|
||||
| `controller.rbac.create` | Create RBAC resources for the Argo workflows controller | `true` |
|
||||
| `controller.existingConfigMap` | | `""` |
|
||||
| `controller.extraArgs` | Extra arguments for the controller command line | `""` |
|
||||
| `controller.persistence.archive.enabled` | Save completed workflows to an SQL database. | `false` |
|
||||
| `controller.config` | Controller configmap configuration content | `{}` |
|
||||
| `controller.instanceID.enabled` | Enable submission filtering based on instanceID attribute. Requires to set instanceID.useReleaseName or instanceID.explicitID | `false` |
|
||||
| `controller.instanceID.useReleaseName` | Use the release name to filter submissions | `false` |
|
||||
|
||||
@@ -600,6 +600,12 @@ controller:
|
||||
##
|
||||
extraArgs: ""
|
||||
|
||||
##
|
||||
## @param controller.persistence.archive.enabled Save completed workflows to an SQL database.
|
||||
persistence:
|
||||
archive:
|
||||
enabled: false
|
||||
|
||||
## Controller configmap configuration content. Requires controller.existingConfigmap to be empty.
|
||||
## @param controller.config [object] Controller configmap configuration content
|
||||
##
|
||||
@@ -646,7 +652,7 @@ controller:
|
||||
maxIdleConns: 100
|
||||
maxOpenConns: 0
|
||||
nodeStatusOffLoad: false
|
||||
archive: false
|
||||
archive: {{ include "common.tplvalues.render" (dict "value" .Values.controller.persistence.archive.enabled "context" $) }}
|
||||
{{- if or .Values.postgresql.enabled (eq .Values.externalDatabase.type "postgresql") }}
|
||||
postgresql:
|
||||
{{- else if or .Values.mysql.enabled (eq .Values.externalDatabase.type "mysql") }}
|
||||
|
||||
Reference in New Issue
Block a user