mirror of
https://github.com/bitnami/charts.git
synced 2026-03-11 15:37:20 +08:00
21 lines
790 B
YAML
21 lines
790 B
YAML
{{- /*
|
|
Copyright Broadcom, Inc. All Rights Reserved.
|
|
SPDX-License-Identifier: APACHE-2.0
|
|
*/}}
|
|
|
|
{{- if and .Values.kong.declarativeConfig (not .Values.kong.declarativeConfigCM) }}
|
|
apiVersion: v1
|
|
kind: ConfigMap
|
|
metadata:
|
|
name: {{ include "kong.declarativeConfigMap" . }}
|
|
namespace: {{ .Release.Namespace }}
|
|
labels: {{- include "common.labels.standard" ( dict "customLabels" .Values.commonLabels "context" $ ) | nindent 4 }}
|
|
app.kubernetes.io/component: server
|
|
{{- if .Values.commonAnnotations }}
|
|
annotations: {{- include "common.tplvalues.render" ( dict "value" .Values.commonAnnotations "context" $ ) | nindent 4 }}
|
|
{{- end }}
|
|
data:
|
|
kong.yml: |-
|
|
{{- include "common.tplvalues.render" (dict "value" .Values.kong.declarativeConfig "context" $) | nindent 4 }}
|
|
{{- end }}
|