fix(argocd-image-updater): add namespace field for namespace scoped resources (#1970)

Signed-off-by: yu-croco <yu.croco@gmail.com>
This commit is contained in:
Aikawa 2023-04-16 17:13:00 +09:00 committed by GitHub
parent 22356c77af
commit 29b753057b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
10 changed files with 16 additions and 9 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.8.5
version: 0.9.0
appVersion: v0.12.2
home: https://github.com/argoproj-labs/argocd-image-updater
icon: https://argocd-image-updater.readthedocs.io/en/stable/assets/logo.png
@ -15,5 +15,5 @@ maintainers:
url: https://argoproj.github.io/
annotations:
artifacthub.io/changes: |
- kind: changed
description: Added support for pod labels
- kind: fixed
description: add namespace field for namespace scoped resources

View file

@ -5,6 +5,7 @@ metadata:
labels:
{{- include "argocd-image-updater.labels" . | nindent 4 }}
name: argocd-image-updater-authscripts
namespace: {{ .Release.Namespace | quote }}
data:
{{- toYaml .Values.authScripts.scripts | nindent 2}}
{{- end }}

View file

@ -4,6 +4,7 @@ metadata:
labels:
{{- include "argocd-image-updater.labels" . | nindent 4 }}
name: argocd-image-updater-ssh-config
namespace: {{ .Release.Namespace | quote }}
data:
{{- with .Values.config.sshConfig }}
{{- toYaml . | nindent 2 }}

View file

@ -5,6 +5,7 @@ metadata:
labels:
{{- include "argocd-image-updater.labels" . | nindent 4 }}
name: argocd-image-updater-config
namespace: {{ .Release.Namespace | quote }}
data:
{{- with .Values.config.applicationsAPIKind }}
applications_api: {{ . }}

View file

@ -2,6 +2,7 @@ apiVersion: apps/v1
kind: Deployment
metadata:
name: {{ include "argocd-image-updater.fullname" . }}
namespace: {{ .Release.Namespace | quote }}
labels:
{{- include "argocd-image-updater.labels" . | nindent 4 }}
spec:
@ -21,7 +22,7 @@ spec:
labels:
{{- with .Values.podLabels }}
{{- toYaml . | nindent 8 }}
{{- end }}
{{- end }}
{{- include "argocd-image-updater.selectorLabels" . | nindent 8 }}
spec:
{{- with .Values.imagePullSecrets }}

View file

@ -14,6 +14,7 @@ metadata:
{{- toYaml . | nindent 4 }}
{{- end }}
name: {{ include "argocd-image-updater.fullname" . }}-metrics
namespace: {{ .Release.Namespace | quote }}
spec:
ports:
- name: metrics

View file

@ -5,7 +5,8 @@ kind: Role
metadata:
labels:
{{ include "argocd-image-updater.labels" . | nindent 4 }}
name: {{ include "argocd-image-updater.fullname" . }}
name: {{ include "argocd-image-updater.fullname" . }}
namespace: {{ .Release.Namespace | quote }}
rules:
- apiGroups:
- ''
@ -45,4 +46,5 @@ roleRef:
subjects:
- kind: ServiceAccount
name: {{ include "argocd-image-updater.serviceAccountName" . }}
namespace: {{ .Release.Namespace | quote }}
{{- end }}

View file

@ -3,9 +3,10 @@ apiVersion: v1
kind: Secret
metadata:
name: argocd-image-updater-secret
namespace: {{ .Release.Namespace | quote }}
labels:
{{- include "argocd-image-updater.labels" . | nindent 4 }}
type: Opaque
data:
data:
argocd.token: {{ .Values.config.argocd.token | b64enc }}
{{- end }}

View file

@ -3,6 +3,7 @@ apiVersion: v1
kind: ServiceAccount
metadata:
name: {{ include "argocd-image-updater.serviceAccountName" . }}
namespace: {{ .Release.Namespace | quote }}
labels:
{{- include "argocd-image-updater.labels" . | nindent 4 }}
{{- with .Values.serviceAccount.annotations }}

View file

@ -3,9 +3,7 @@ apiVersion: monitoring.coreos.com/v1
kind: ServiceMonitor
metadata:
name: {{ include "argocd-image-updater.fullname" . }}-metrics
{{- with .Values.metrics.serviceMonitor.namespace }}
namespace: {{ . }}
{{- end }}
namespace: {{ default .Release.Namespace .Values.metrics.serviceMonitor.namespace | quote }}
labels:
{{- include "argocd-image-updater.labels" . | nindent 4 }}
{{- with .Values.metrics.serviceMonitor.selector }}