{{- /* Copyright Broadcom, Inc. All Rights Reserved. SPDX-License-Identifier: APACHE-2.0 */}} {{- if and .Values.controlPlane.enabled (not .Values.controlPlane.existingConfigMap) }} apiVersion: v1 kind: ConfigMap metadata: name: {{ printf "%s-default" (include "apisix.control-plane.fullname" .) | trunc 63 | trimSuffix "-" }} namespace: {{ include "common.names.namespace" . | quote }} labels: {{- include "common.labels.standard" ( dict "customLabels" .Values.commonLabels "context" $ ) | nindent 4 }} app.kubernetes.io/part-of: apisix app.kubernetes.io/component: control-plane {{- if .Values.commonAnnotations }} annotations: {{- include "common.tplvalues.render" ( dict "value" .Values.commonAnnotations "context" $ ) | nindent 4 }} {{- end }} data: config.yaml: | {{- include "common.tplvalues.render" (dict "value" .Values.controlPlane.defaultConfig "context" $) | nindent 4 }} {{- end }}