fix(argocd-image-updater): Add scratch space for /tmp (#933)

Signed-off-by: Marco Kilchhofer <mkilchhofer@users.noreply.github.com>
This commit is contained in:
Marco Kilchhofer 2021-09-16 19:30:36 +02:00 committed by GitHub
parent 7274e3a094
commit d96cb02a43
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 2 deletions

View file

@ -74,6 +74,8 @@ spec:
volumeMounts:
- mountPath: /app/config
name: registries-conf
- mountPath: /tmp
name: tmp-dir
volumes:
- configMap:
items:
@ -81,6 +83,8 @@ spec:
path: registries.conf
name: argocd-image-updater-config
name: registries-conf
- emptyDir: {}
name: tmp-dir
{{- with .Values.nodeSelector }}
nodeSelector:
{{- toYaml . | nindent 8 }}