Skip to content

Commit

Permalink
allow providing extra args to operator
Browse files Browse the repository at this point in the history
  • Loading branch information
floreks committed Jul 10, 2024
1 parent 06f0177 commit 34ee021
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
3 changes: 3 additions & 0 deletions charts/deployment-operator/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,9 @@ spec:
- -processing-timeout={{ .Values.args.processingTimeout }}
- -enable-helm-dependency-update={{ .Values.args.enableHelmDependencyUpdate }}
- -disable-helm-dry-run-server={{ .Values.args.disableHelmTemplateDryRunServer }}
{{- range .Values.extraArgs }}
- {{ . }}
{{- end }}
env:
- name: IMAGE_TAG
value: {{ $tag | quote }}
Expand Down
2 changes: 2 additions & 0 deletions charts/deployment-operator/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@ args:
enableHelmDependencyUpdate: false
disableHelmTemplateDryRunServer: false

extraArgs: []

image:
repository: ghcr.io/pluralsh/deployment-operator
pullPolicy: IfNotPresent
Expand Down

0 comments on commit 34ee021

Please sign in to comment.