File tree Expand file tree Collapse file tree 2 files changed +12
-0
lines changed
charts/k8s-image-availability-exporter Expand file tree Collapse file tree 2 files changed +12
-0
lines changed Original file line number Diff line number Diff line change @@ -2,6 +2,9 @@ apiVersion: apps/v1
22kind : Deployment
33metadata :
44 name : {{ template "k8s-image-availability-exporter.fullname" . }}
5+ {{- with .Values.annotations }}
6+ annotations : {{- toYaml . | nindent 4 }}
7+ {{- end }}
58 labels :
69 helm.sh/chart : " {{ .Chart.Name }}-{{ .Chart.Version | replace " +" "_" }}"
710 app.kubernetes.io/name : " {{ template " k8s-image-availability-exporter.fullname" . }}"
2124 app : {{ template "k8s-image-availability-exporter.fullname" . }}
2225 template :
2326 metadata :
27+ {{- with .Values.podAnnotations }}
28+ annotations : {{- toYaml . | nindent 8 }}
29+ {{- end }}
2430 labels :
2531 app : {{ template "k8s-image-availability-exporter.fullname" . }}
2632 spec :
Original file line number Diff line number Diff line change @@ -13,6 +13,12 @@ k8sImageAvailabilityExporter:
1313 # -- Setting this to false will prevent k8s-iae having unconstrained cluster-wide secret access
1414 useSecretsForPrivateRepositories : true
1515
16+ # -- additional annotations for deployment
17+ annotations : {}
18+
19+ # -- additional annotations added to the pod
20+ podAnnotations : {}
21+
1622# -- Number of replicas (pods) to launch.
1723replicaCount : 1
1824
You can’t perform that action at this time.
0 commit comments