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.
14 lines
424 B
14 lines
424 B
{{- if and .Values.starrocksCluster.enabledBe .Values.starrocksBeSpec .Values.starrocksBeSpec.config }}
|
|
apiVersion: v1
|
|
kind: ConfigMap
|
|
metadata:
|
|
name: {{ template "starrockscluster.be.configmap.name" . }}
|
|
namespace: {{ template "starrockscluster.namespace" . }}
|
|
labels:
|
|
cluster: {{ template "starrockscluster.name" . }}
|
|
app: "be"
|
|
data:
|
|
{{- include "starrockscluster.be.config" . | nindent 2 }}
|
|
|
|
{{- end }}
|
|
|
|
|