mirror of https://github.com/fluxcd/flagger.git
Merge pull request #1076 from makaronak/loadtester-secrets
feat: allow loadtester pull secrets
This commit is contained in:
commit
edf7b90c11
|
|
@ -81,6 +81,10 @@ spec:
|
|||
volumeMounts:
|
||||
{{- toYaml . | nindent 12 }}
|
||||
{{- end }}
|
||||
{{- if .Values.image.pullSecret }}
|
||||
imagePullSecrets:
|
||||
- name: {{ .Values.image.pullSecret }}
|
||||
{{- end }}
|
||||
{{ with .Values.volumes }}
|
||||
volumes:
|
||||
{{- toYaml . | nindent 8 }}
|
||||
|
|
|
|||
|
|
@ -4,6 +4,7 @@ image:
|
|||
repository: ghcr.io/fluxcd/flagger-loadtester
|
||||
tag: 0.19.0
|
||||
pullPolicy: IfNotPresent
|
||||
pullSecret:
|
||||
|
||||
podLabels: {}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue