fix(dispatch) correct init command after manual test
This commit is contained in:
parent
a42bb2072d
commit
0682e110d2
1 changed files with 3 additions and 2 deletions
|
@ -28,14 +28,15 @@ spec:
|
||||||
value: "{{ .Values.postgres.port }}"
|
value: "{{ .Values.postgres.port }}"
|
||||||
- name: DATABASE_NAME
|
- name: DATABASE_NAME
|
||||||
value: "{{ .Values.postgres.database_name }}"
|
value: "{{ .Values.postgres.database_name }}"
|
||||||
envFrom:
|
envFrom: &envFrom
|
||||||
- secretRef:
|
- secretRef:
|
||||||
name: {{ .Values.envFromSecret }}
|
name: {{ .Values.envFromSecret }}
|
||||||
|
|
||||||
- name: web-plugin-install
|
- name: web-plugin-install
|
||||||
image: "{{ .Values.image.repository }}:{{ .Values.image.tag }}"
|
image: "{{ .Values.image.repository }}:{{ .Values.image.tag }}"
|
||||||
command: ["dispatch", "plugins", "install"]
|
command: ["dispatch", "plugins", "install"]
|
||||||
env: *dispatchEnv
|
env: *dispatchEnv
|
||||||
|
envFrom: *envFrom
|
||||||
|
|
||||||
containers:
|
containers:
|
||||||
- name: web
|
- name: web
|
||||||
|
|
Loading…
Reference in a new issue