Commit 926b781b authored by Waqar Ahmed's avatar Waqar Ahmed

Define image pull policy for init container

parent 23892730
......@@ -111,6 +111,7 @@ questions:
- variable: nextcloudDataHostPathEnabled
label: "Configure Host Path for Nextcloud data"
group: "Storage"
schema:
type: boolean
default: false
......@@ -123,6 +124,7 @@ questions:
- variable: nextcloudDataVolume
label: "Configure iXVolume"
group: "Storage"
schema:
type: dict
$ref:
......
......@@ -42,6 +42,7 @@ spec:
- name: init-postgresdb
image: busybox:latest
command: ['sh', '-c', "until nslookup {{ template "nextcloud.fullname" . }}-postgres; do echo waiting for postgres; sleep 2; done"]
imagePullPolicy: {{ .Values.image.pullPolicy }}
containers:
- name: {{ .Chart.Name }}
image: "{{ .Values.image.repository }}:{{ .Values.image.tag }}"
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment