You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
422 B
13 lines
422 B
{{- if and .Values.starrocksCluster.enabledCn .Values.starrocksCnSpec .Values.starrocksCnSpec.config }}
|
|
apiVersion: v1
|
|
kind: ConfigMap
|
|
metadata:
|
|
name: {{ template "starrockscluster.cn.configmap.name" . }}
|
|
namespace: {{ template "starrockscluster.namespace" . }}
|
|
labels:
|
|
cluster: {{ template "starrockscluster.name" . }}
|
|
app: "cn"
|
|
data:
|
|
{{- include "starrockscluster.cn.config" . | nindent 2 }}
|
|
|
|
{{- end }}
|
|
|