mirror of https://github.com/Mai-with-u/MaiBot.git
15 lines
384 B
YAML
15 lines
384 B
YAML
apiVersion: v1
|
|
kind: ConfigMap
|
|
metadata:
|
|
name: {{ .Release.Name }}-maibot-scripts
|
|
namespace: {{ .Release.Namespace }}
|
|
data:
|
|
# core
|
|
volume-linker.sh: |
|
|
{{ .Files.Get "files/volume-linker.sh" | nindent 4 }}
|
|
# core的初始化容器
|
|
{{- if .Values.core.setup_default_plugins }}
|
|
setup-plugins.py: |
|
|
{{ .Files.Get "files/setup-plugins.py" | nindent 4 }}
|
|
{{- end }}
|