Skip to content

Commit

Permalink
Merge pull request #39 from vbehar/chart-args
Browse files Browse the repository at this point in the history
chart: allow custom args
  • Loading branch information
martin-helmich authored Apr 17, 2020
2 parents 49557a6 + d51544c commit e71edfd
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,8 @@ spec:
{{- toYaml .Values.securityContext | nindent 12 }}
image: "{{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}"
imagePullPolicy: {{ .Values.image.pullPolicy }}
args:
{{- toYaml .Values.args | nindent 12 }}
ports:
- name: health
containerPort: 9102
Expand Down
4 changes: 4 additions & 0 deletions deploy/helm-chart/kubernetes-replicator/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ imagePullSecrets: []
nameOverride: ""
fullnameOverride: ""

args: []
# - -resync-period=30m
# - -allow-all=false

serviceAccount:
create: true
annotations: {}
Expand Down

0 comments on commit e71edfd

Please sign in to comment.