[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:
Radosław Piliszek 2024-04-08 10:07:27 +02:00
parent dd1881bd8b
commit 46e925e655

View File

@ -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