This commit is contained in:
marsal wang
2021-12-24 13:13:49 +08:00
parent cbe22c6edb
commit f98054bb67
2 changed files with 2 additions and 2 deletions

View File

@ -29,7 +29,7 @@ nacos:
db:
host: mysql-crm1
name: nacos
port: '3306'
port: 3306
username: root
password: gkxl650
param: characterEncoding=utf8&connectTimeout=1000&socketTimeout=3000&autoReconnect=true&useSSL=false

View File

@ -7,7 +7,7 @@ data:
{{- with .Values.nacos.storage.db }}
mysql.db.host: {{.host}}
mysql.db.name: {{ .name }}
mysql.port: {{ .port | default "3306"}}
mysql.port: "{{ .port | default 3306}}"
mysql.user: {{ .username }}
mysql.password: {{ .password }}
mysql.param: {{ .param | default "characterEncoding=utf8&connectTimeout=1000&socketTimeout=3000&autoReconnect=true&useSSL=false" }}