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:
Albert Dixon 2020-07-31 14:57:19 -07:00 committed by GitHub
parent efe49b9261
commit cd4adfcaf8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 6 additions and 1 deletions

View file

@ -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:

View file

@ -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 }}

View file

@ -89,6 +89,8 @@ secret:
logLevel: info logLevel: info
extraArgs: []
metrics: metrics:
enabled: false enabled: false
port: 9001 port: 9001