feat: Argo Notifications - add extraArgs value (#416)
* charts/argocd-notifications/values: add extraArgs * charts/argocd-notifications/templates/deployment: use extraArgs * charts/argocd-notifications/chart: bump chart ver * charts/argocd-notifications/chart: actually set ver
This commit is contained in:
parent
efe49b9261
commit
cd4adfcaf8
3 changed files with 6 additions and 1 deletions
|
@ -3,7 +3,7 @@ appVersion: 0.7.0
|
||||||
description: A Helm chart for ArgoCD notifications, an add-on to ArgoCD.
|
description: A Helm chart for ArgoCD notifications, an add-on to ArgoCD.
|
||||||
name: argocd-notifications
|
name: argocd-notifications
|
||||||
type: application
|
type: application
|
||||||
version: 1.0.8
|
version: 1.0.9
|
||||||
home: https://github.com/argoproj/argo-helm
|
home: https://github.com/argoproj/argo-helm
|
||||||
icon: https://raw.githubusercontent.com/argoproj/argo/master/docs/assets/argo.png
|
icon: https://raw.githubusercontent.com/argoproj/argo/master/docs/assets/argo.png
|
||||||
keywords:
|
keywords:
|
||||||
|
|
|
@ -33,6 +33,9 @@ spec:
|
||||||
{{- if .Values.metrics.enabled }}
|
{{- if .Values.metrics.enabled }}
|
||||||
- --metrics-port={{ .Values.metrics.port }}
|
- --metrics-port={{ .Values.metrics.port }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
|
{{- range .Values.extraArgs }}
|
||||||
|
- {{ . | squote }}
|
||||||
|
{{- end }}
|
||||||
ports:
|
ports:
|
||||||
{{- if .Values.metrics.enabled }}
|
{{- if .Values.metrics.enabled }}
|
||||||
- containerPort: {{ .Values.metrics.port }}
|
- containerPort: {{ .Values.metrics.port }}
|
||||||
|
|
|
@ -89,6 +89,8 @@ secret:
|
||||||
|
|
||||||
logLevel: info
|
logLevel: info
|
||||||
|
|
||||||
|
extraArgs: []
|
||||||
|
|
||||||
metrics:
|
metrics:
|
||||||
enabled: false
|
enabled: false
|
||||||
port: 9001
|
port: 9001
|
||||||
|
|
Loading…
Reference in a new issue