Skip to content

Commit

Permalink
PR comment fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
jakeschuurmans committed Aug 13, 2024
1 parent ce0e6ad commit 756858f
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions chart/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,17 +20,21 @@ spec:
containers:
- name: flipflop
image: {{ .Values.image.repository.url }}/flipflop:{{ .Values.image.repository.tag }}
imagePullPolicy: {{ $.Values.image.pullPolicy }}
imagePullPolicy: {{ .Values.image.pullPolicy }}
command: [
"flipflop",
"run",
"--config",
"/etc/flipflop/config.yaml",
"--enable-pprof",
"--log-level",
"debug",
"{{- .Values.env.log_level -}}",
{{- if .Values.env.fault_injection -}}
"--fault-injection",
{{- end -}}
{{- if .Values.env.dryrun -}}
"--dry-run",
{{- end -}}
]
volumeMounts:
- name: config-volume
Expand All @@ -39,7 +43,7 @@ spec:
mountPath: /etc/nats
readOnly: true
env:
{{- if $.Values.env.endpoints.fleetdb.authenticate }}
{{- if .Values.env.endpoints.fleetdb.authenticate }}
- name: FLIPFLOP_ENDPOINTS_FLEETDB_OIDC_CLIENT_SECRET
valueFrom:
secretKeyRef:
Expand Down

0 comments on commit 756858f

Please sign in to comment.