[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:
Mauro Franchini
2022-12-07 16:50:12 +01:00
committed by GitHub
co-authored by Bitnami Bot
parent 1bd6e1d8d2
commit 2e86826cf1
3 changed files with 9 additions and 2 deletions
+1 -1
View File
@@ -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
+1
View File
@@ -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` |
+7 -1
View File
@@ -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") }}