27 lines
646 B
Go Template
27 lines
646 B
Go Template
{{- if not (env "HELMFILE_BOOTSTRAP") }}
|
|
image:
|
|
repository: {{ .Values.registry }}/velero/velero
|
|
imagePullSecrets:
|
|
- regcred
|
|
|
|
kubectl:
|
|
image:
|
|
repository: {{ .Values.registry }}/bitnami/kubectl
|
|
|
|
initContainers:
|
|
- name: velero-plugin-for-aws
|
|
image: {{.Values.registry}}/velero/velero-plugin-for-aws:v1.11.1
|
|
imagePullPolicy: IfNotPresent
|
|
volumeMounts:
|
|
- mountPath: /target
|
|
name: plugins
|
|
{{- else }}
|
|
initContainers:
|
|
- name: velero-plugin-for-aws
|
|
image: velero/velero-plugin-for-aws:v1.11.1
|
|
imagePullPolicy: IfNotPresent
|
|
volumeMounts:
|
|
- mountPath: /target
|
|
name: plugins
|
|
{{- end }}
|