UNCLASSIFIED - NO CUI

Skip to content
Snippets Groups Projects
Commit 9687fc82 authored by Micah Nagel's avatar Micah Nagel
Browse files

Merge branch 'velero-issue-928' into 'master'

Velero Image pull policy defaults to IfNotPresent if a value is not passed

Closes #928

See merge request platform-one/big-bang/bigbang!1116
parents 5da47fe3 134b3812
No related branches found
No related tags found
2 merge requests!1386Master,!1116Velero Image pull policy defaults to IfNotPresent if a value is not passed
Pipeline #574722 passed with warnings
......@@ -23,7 +23,7 @@ initContainers:
{{- if eq . "aws" }}
- name: velero-plugin-for-aws
image: registry1.dso.mil/ironbank/opensource/velero/velero-plugin-for-aws:v1.2.0
imagePullPolicy: IfNotPresent
imagePullPolicy: {{ dig "image" "pullPolicy" "IfNotPresent" $.Values.addons.velero.values }}
volumeMounts:
- mountPath: /target
name: plugins
......@@ -38,7 +38,7 @@ initContainers:
{{- if eq . "azure" }}
- name: velero-plugin-for-azure
image: registry1.dso.mil/ironbank/opensource/velero/velero-plugin-for-microsoft-azure:v1.2.0
imagePullPolicy: IfNotPresent
imagePullPolicy: {{ dig "image" "pullPolicy" "IfNotPresent" $.Values.addons.velero.values }}
volumeMounts:
- mountPath: /target
name: plugins
......@@ -53,7 +53,7 @@ initContainers:
{{- if eq . "csi" }}
- name: velero-plugin-for-csi
image: registry1.dso.mil/ironbank/opensource/velero/velero-plugin-for-csi:v0.1.2
imagePullPolicy: IfNotPresent
imagePullPolicy: {{ dig "image" "pullPolicy" "IfNotPresent" $.Values.addons.velero.values }}
volumeMounts:
- mountPath: /target
name: plugins
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment