Skip to content

Commit

Permalink
be able to set the allowAdHocContainers value
Browse files Browse the repository at this point in the history
  • Loading branch information
jmazzitelli committed Oct 3, 2022
1 parent e17ce5b commit 151def1
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
2 changes: 2 additions & 0 deletions kiali-operator/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,8 @@ spec:
value: {{ .Values.allowAdHocKialiNamespace | quote }}
- name: ALLOW_AD_HOC_KIALI_IMAGE
value: {{ .Values.allowAdHocKialiImage | quote }}
- name: ALLOW_AD_HOC_CONTAINERS
value: {{ .Values.allowAdHocContainers | quote }}
- name: ALLOW_SECURITY_CONTEXT_OVERRIDE
value: {{ .Values.allowSecurityContextOverride | quote }}
- name: PROFILE_TASKS_TASK_OUTPUT_LIMIT
Expand Down
4 changes: 4 additions & 0 deletions kiali-operator/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,10 @@ allowAdHocKialiNamespace: true
# You may want to disable this if you do not want users to install their own Kiali images.
allowAdHocKialiImage: false

# allowAdHocContainers tells the operator to allow a user to be able to install additional pod containers to the Kiali pod.
# In other words, it will allow the Kiali CR spec.deployment.additional_pod_containers_yaml to be configured by the user.
allowAdHocContainers: false

# allowSecurityContextOverride tells the operator to allow a user to be able to fully override the Kiali
# container securityContext. If this is false, certain securityContext settings must exist on the Kiali
# container and any attempt to override them will be ignored.
Expand Down

0 comments on commit 151def1

Please sign in to comment.