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

Signed-off-by: Marco Kilchhofer <mkilchhofer@users.noreply.github.com>
pull/927/head^2 argocd-image-updater-0.1.1
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

@ -2,7 +2,7 @@ apiVersion: v2
name: argocd-image-updater
description: A Helm chart for Argo CD Image Updater, a tool to automatically update the container images of Kubernetes workloads which are managed by Argo CD
type: application
version: 0.1.0
version: 0.1.1
appVersion: v0.10.1
home: https://github.com/argoproj-labs/argocd-image-updater
icon: https://argocd-image-updater.readthedocs.io/en/stable/assets/logo.png
@ -15,4 +15,4 @@ maintainers:
url: https://argoproj.github.io/
annotations:
artifacthub.io/changes: |
- "[Added]: First chart release"
- "[Fixed]: Add scratch space (emptyDir) for /tmp"

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