fix: helm模板缩进问题

pull/1208/head
zhangxinhui02 2025-08-20 01:01:07 +08:00
parent f891fdd0c4
commit df3ebc07ee
No known key found for this signature in database
GPG Key ID: 22C23383864A313F
3 changed files with 4 additions and 4 deletions

View File

@ -5,4 +5,4 @@ metadata:
namespace: {{ .Release.Namespace }}
data:
config.toml: |
{{ .Values.config.adapter_config | indent 4 }}
{{ .Values.config.adapter_config | nindent 4 }}

View File

@ -8,6 +8,6 @@ data:
HOST=0.0.0.0
PORT=8000
model_config.toml: |
{{ .Values.config.core_model_config | indent 4 }}
{{ .Values.config.core_model_config | nindent 4 }}
bot_config.toml: |
{{ .Values.config.core_bot_config | indent 4 }}
{{ .Values.config.core_bot_config | nindent 4 }}

View File

@ -5,4 +5,4 @@ metadata:
namespace: {{ .Release.Namespace }}
data:
volume-linker.sh: |
{{ .Files.Get "files/volume-linker.sh" | indent 4 }}
{{ .Files.Get "files/volume-linker.sh" | nindent 4 }}