MaiBot/helm-chart/templates/core/configmap-bot-config.yaml

13 lines
351 B
YAML

{{- if or .Release.IsInstall .Values.config.enable_config_override }}
# 渲染规则:
# 初次安装,或配置了覆盖规则
apiVersion: v1
kind: ConfigMap
metadata:
name: {{ .Release.Name }}-maibot-core-bot-config
namespace: {{ .Release.Namespace }}
data:
bot_config.toml: |
{{ .Values.config.core_bot_config | nindent 4 }}
{{- end }}