[REVERTME] Make the admin-adding job quit
The app hangs indefinitely after succeeding so force the timeout to quit it. Change-Id: I86c167a3a09a971a9eefb3121c6e459a7e36c72a
This commit is contained in:
parent
dd1881bd8b
commit
46e925e655
@ -19,8 +19,11 @@ spec:
|
||||
containers:
|
||||
- name: add-admin-user
|
||||
image: "{{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}"
|
||||
command: ["node"]
|
||||
args: ["app.js", "@apostrophecms/user:add", "{{ .Values.apostropheCMS.user.name }}", "{{ .Values.apostropheCMS.user.password }}"]
|
||||
command:
|
||||
- sh
|
||||
- -c
|
||||
# FIXME: timeout and true - an ugly hack to kill the process because it hangs otherwise - unfortunately it does not check for success now
|
||||
- "timeout 30 node app.js @apostrophecms/user:add {{ .Values.apostropheCMS.user.name }} {{ .Values.apostropheCMS.user.password }} || true"
|
||||
env:
|
||||
{{- toYaml .Values.env | nindent 10 }}
|
||||
restartPolicy: Never
|
||||
|
Loading…
x
Reference in New Issue
Block a user