feat(argocd-applicationset): Add extraArgs
Signed-off-by: Jan-Otto Kröpke <joe@adorsys.de>
This commit is contained in:
parent
263919a8a8
commit
03947fd6f4
3 changed files with 9 additions and 2 deletions
|
@ -2,7 +2,7 @@ apiVersion: v2
|
||||||
name: argocd-applicationset
|
name: argocd-applicationset
|
||||||
description: A Helm chart for installing ArgoCD ApplicationSet
|
description: A Helm chart for installing ArgoCD ApplicationSet
|
||||||
type: application
|
type: application
|
||||||
version: 1.4.0
|
version: 1.5.0
|
||||||
appVersion: "v0.2.0"
|
appVersion: "v0.2.0"
|
||||||
home: https://github.com/argoproj/argo-helm
|
home: https://github.com/argoproj/argo-helm
|
||||||
icon: https://argocd-applicationset.readthedocs.io/en/stable/assets/logo.png
|
icon: https://argocd-applicationset.readthedocs.io/en/stable/assets/logo.png
|
||||||
|
@ -14,4 +14,4 @@ maintainers:
|
||||||
- name: maruina
|
- name: maruina
|
||||||
annotations:
|
annotations:
|
||||||
artifacthub.io/changes: |
|
artifacthub.io/changes: |
|
||||||
- "[Added]: Configuration for Pod labels"
|
- "[Added]: Add extraArgs to define additional CLI parameters"
|
||||||
|
|
|
@ -44,6 +44,9 @@ spec:
|
||||||
- --policy={{ .Values.args.policy }}
|
- --policy={{ .Values.args.policy }}
|
||||||
- --debug={{ .Values.args.debug }}
|
- --debug={{ .Values.args.debug }}
|
||||||
- --dry-run={{ .Values.args.dryRun }}
|
- --dry-run={{ .Values.args.dryRun }}
|
||||||
|
{{- with .Values.extraArgs }}
|
||||||
|
{{- . | toYaml | nindent 12 }}
|
||||||
|
{{- end }}
|
||||||
image: "{{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}"
|
image: "{{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}"
|
||||||
imagePullPolicy: {{ .Values.image.pullPolicy }}
|
imagePullPolicy: {{ .Values.image.pullPolicy }}
|
||||||
ports:
|
ports:
|
||||||
|
|
|
@ -113,3 +113,7 @@ extraVolumeMounts: []
|
||||||
extraVolumes: []
|
extraVolumes: []
|
||||||
# - name: foobar
|
# - name: foobar
|
||||||
# emptyDir: {}
|
# emptyDir: {}
|
||||||
|
|
||||||
|
# -- List of extra cli args to add
|
||||||
|
extraArgs: []
|
||||||
|
#- --loglevel=warn
|
||||||
|
|
Loading…
Reference in a new issue