[argo] Add workflow persistence configuration (#133)
This commit is contained in:
parent
04d7d2c390
commit
caf9ff6e49
3 changed files with 22 additions and 1 deletions
|
@ -2,5 +2,5 @@ apiVersion: v1
|
|||
appVersion: "v2.4.2"
|
||||
description: A Helm chart for Argo Workflows
|
||||
name: argo
|
||||
version: 0.6.0
|
||||
version: 0.6.1
|
||||
icon: https://raw.githubusercontent.com/argoproj/argo/master/argo.png
|
||||
|
|
|
@ -43,3 +43,6 @@ data:
|
|||
{{- if .Values.controller.telemetryConfig.enabled }}
|
||||
telemetryConfig:
|
||||
{{ toYaml .Values.controller.telemetryConfig | indent 6}}{{- end }}
|
||||
{{- if .Values.controller.persistence }}
|
||||
persistence:
|
||||
{{ toYaml .Values.controller.persistence | indent 6 }}{{- end }}
|
||||
|
|
|
@ -29,6 +29,24 @@ controller:
|
|||
enabled: false
|
||||
path: /metrics
|
||||
port: 8080
|
||||
persistence: {}
|
||||
# connectionPool:
|
||||
# maxIdleConns: 100
|
||||
# maxOpenConns: 0
|
||||
# # save the entire workflow into etcd and DB
|
||||
# nodeStatusOffLoad: false
|
||||
# postgresql:
|
||||
# host: localhost
|
||||
# port: 5432
|
||||
# database: postgres
|
||||
# tableName: argo_workflows
|
||||
# # the database secrets must be in the same namespace of the controller
|
||||
# userNameSecret:
|
||||
# name: argo-postgres-config
|
||||
# key: username
|
||||
# passwordSecret:
|
||||
# name: argo-postgres-config
|
||||
# key: password
|
||||
telemetryConfig:
|
||||
enabled: false
|
||||
path: /telemetry
|
||||
|
|
Loading…
Reference in a new issue