We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 8c42a9a + e875b8a commit bc6a745Copy full SHA for bc6a745
2 files changed
charts/openshift-console-plugin/templates/deployment.yaml
@@ -16,6 +16,10 @@ spec:
16
labels:
17
{{- include "openshift-console-plugin.labels" . | nindent 8 }}
18
spec:
19
+ {{- with .Values.plugin.imagePullSecrets }}
20
+ imagePullSecrets:
21
+ {{- toYaml . | nindent 8 }}
22
+ {{- end }}
23
containers:
24
- name: {{ template "openshift-console-plugin.name" . }}
25
image: {{ required "Plugin image must be specified!" .Values.plugin.image }}
charts/openshift-console-plugin/values.yaml
@@ -4,6 +4,7 @@ plugin:
4
description: ""
5
image: ""
6
imagePullPolicy: IfNotPresent
7
+ imagePullSecrets: []
8
replicas: 2
9
port: 9443
10
securityContext:
0 commit comments