mirror of
https://github.com/clearml/clearml-helm-charts
synced 2025-01-31 09:06:48 +00:00
ace37019a8
* adapt ingress * update docs * remove idea * fix imagepullsecret error * add apiserver configuration * add apiserver configuration * add apiserver configuration
14 lines
381 B
YAML
14 lines
381 B
YAML
{{- if .Values.apiserver.configuration.additionalConfigs -}}
|
|
apiVersion: v1
|
|
kind: ConfigMap
|
|
metadata:
|
|
name: "{{ include "clearml.fullname" . }}-apiserver-configmap"
|
|
labels:
|
|
{{- include "clearml.labels" . | nindent 4 }}
|
|
data:
|
|
{{- range $key, $val := .Values.apiserver.configuration.additionalConfigs }}
|
|
{{ $key }}: |
|
|
{{- $val | nindent 4 }}
|
|
{{- end }}
|
|
{{- end -}}
|