File tree 4 files changed +10
-0
lines changed
4 files changed +10
-0
lines changed Original file line number Diff line number Diff line change 88
88
- name : ALLOW_AD_HOC_OSSMCONSOLE_IMAGE
89
89
value : {{ .Values.allowAdHocOSSMConsoleImage | quote }}
90
90
{{- end }}
91
+ - name : ALLOW_AD_HOC_CONTAINERS
92
+ value : {{ .Values.allowAdHocContainers | quote }}
91
93
- name : ALLOW_SECURITY_CONTEXT_OVERRIDE
92
94
value : {{ .Values.allowSecurityContextOverride | quote }}
93
95
- name : ALLOW_ALL_ACCESSIBLE_NAMESPACES
Original file line number Diff line number Diff line change @@ -77,6 +77,10 @@ allowAdHocKialiImage: false
77
77
# This is only applicable when running on OpenShift.
78
78
allowAdHocOSSMConsoleImage : false
79
79
80
+ # allowAdHocContainers tells the operator to allow a user to be able to install additional pod containers to the Kiali pod.
81
+ # In other words, it will allow the Kiali CR spec.deployment.additional_pod_containers_yaml to be configured by the user.
82
+ allowAdHocContainers : false
83
+
80
84
# allowSecurityContextOverride tells the operator to allow a user to be able to fully override the Kiali
81
85
# container securityContext. If this is false, certain securityContext settings must exist on the Kiali
82
86
# container and any attempt to override them will be ignored.
Original file line number Diff line number Diff line change @@ -139,6 +139,9 @@ spec:
139
139
resources :
140
140
{{- toYaml .Values.deployment.resources | nindent 10 }}
141
141
{{- end }}
142
+ {{- if .Values.deployment.additional_pod_containers_yaml }}
143
+ {{- toYaml .Values.deployment.additional_pod_containers_yaml | nindent 6 }}
144
+ {{- end }}
142
145
volumes :
143
146
- name : {{ include "kiali-server.fullname" . }}-configuration
144
147
configMap :
Original file line number Diff line number Diff line change @@ -35,6 +35,7 @@ deployment:
35
35
# For more control over what the Kial Service Account can see, use the Kiali Operator
36
36
accessible_namespaces :
37
37
- " **"
38
+ additional_pod_containers_yaml : {}
38
39
additional_service_yaml : {}
39
40
affinity :
40
41
node : {}
You can’t perform that action at this time.
0 commit comments