We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 56b6b6b commit 6e0feb3Copy full SHA for 6e0feb3
charts/sensor-metrics-analyzer/templates/deployment.yaml
@@ -16,6 +16,10 @@ spec:
16
app.kubernetes.io/name: {{ include "sensor-metrics-analyzer.name" . }}
17
app.kubernetes.io/instance: {{ .Release.Name }}
18
spec:
19
+ {{- with .Values.imagePullSecrets }}
20
+ imagePullSecrets:
21
+ {{- toYaml . | nindent 8 }}
22
+ {{- end }}
23
containers:
24
- name: app
25
image: "{{ .Values.image.repository }}:{{ .Values.image.tag }}"
charts/sensor-metrics-analyzer/values.yaml
@@ -5,6 +5,11 @@ image:
5
tag: "0.0.5"
6
pullPolicy: IfNotPresent
7
8
+# Optional image pull secrets for private registries.
9
+# The referenced Secret(s) must already exist in the release namespace.
10
+imagePullSecrets:
11
+ - name: quay-secret
12
+
13
service:
14
type: ClusterIP
15
port: 80
0 commit comments