We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 94fe6f7 commit 57c012cCopy full SHA for 57c012c
helm/charts/k8s-image-availability-exporter/templates/rbac.yaml
@@ -4,6 +4,7 @@ kind: ClusterRole
4
metadata:
5
name: {{ template "k8s-image-availability-exporter.fullname" . }}
6
rules:
7
+{{- if .Values.k8sImageAvailabilityExporter.useSecretsForPrivateRepositories }}
8
- apiGroups:
9
- ""
10
resources:
@@ -12,6 +13,7 @@ rules:
12
13
- list
14
- watch
15
- get
16
+{{- end }}
17
18
19
helm/charts/k8s-image-availability-exporter/values.yaml
@@ -5,6 +5,7 @@ k8sImageAvailabilityExporter:
pullPolicy: IfNotPresent
replicas: 1
resources: {}
+ useSecretsForPrivateRepositories: true # Setting this to false will prevent k8s-iae having unconstrained cluster-wide secret access
args:
- --bind-address=:8080
11
0 commit comments