|
@@ -4,9 +4,9 @@ server:
|
|
|
spring:
|
|
|
##mqtt配置
|
|
|
mqtt:
|
|
|
- username: admin
|
|
|
- password: v7iAfQSjXlnLU96GZIUppKNu
|
|
|
- host-url: tcp://172.21.92.181:1883
|
|
|
+ username: {{ $.Values.rabbitmq_mqtt.vhost }}:{{ $.Values.rabbitmq_mqtt.username }}
|
|
|
+ password: {{ $.Values.rabbitmq_mqtt.password }}
|
|
|
+ host-url: tcp://{{ $.Values.rabbitmq_mqtt.url }}:{{ $.Values.rabbitmq_mqtt.port }}
|
|
|
clientId: mqttId555
|
|
|
completionTimeout: 3000
|
|
|
timeout: 1000
|
|
@@ -17,27 +17,41 @@ spring:
|
|
|
dynamic:
|
|
|
datasource:
|
|
|
master:
|
|
|
- url: jdbc:postgresql://10.224.0.102:5432/interlock?characterEncoding=UTF-8&useUnicode=true&useSSL=false&tinyInt1isBit=false&allowPublicKeyRetrieval=true&serverTimezone=Asia/Shanghai
|
|
|
- username: postgres
|
|
|
- password: DLSZZKWQhA96REZmquUn4OVN
|
|
|
+ url: jdbc:postgresql://{{ $.Values.postgres.url }}:{{ $.Values.postgres.port }}/{{ $.Values.postgres.database }}?characterEncoding=UTF-8&useUnicode=true&useSSL=false&tinyInt1isBit=false&allowPublicKeyRetrieval=true&serverTimezone=Asia/Shanghai
|
|
|
+ username: {{ $.Values.postgres.username }}
|
|
|
+ password: {{ $.Values.postgres.password }}
|
|
|
driver-class-name: org.postgresql.Driver
|
|
|
|
|
|
#redis 配置
|
|
|
redis:
|
|
|
- database: 0
|
|
|
- host: redis-master.ensaas-db.svc.cluster.local
|
|
|
- port: 6379
|
|
|
- password: mVfTxu4qrGUZuydHVvKqd0CJ
|
|
|
+ database: {{ $.Values.redis.database }}
|
|
|
+ host: {{ $.Values.redis.url }}
|
|
|
+ port: {{ $.Values.redis.port }}
|
|
|
+ password: {{ $.Values.redis.password }}
|
|
|
|
|
|
jeecg:
|
|
|
#分布式锁配置
|
|
|
redisson:
|
|
|
- address: http://redis-master.ensaas-db.svc.cluster.local:6379
|
|
|
- password: mVfTxu4qrGUZuydHVvKqd0CJ
|
|
|
+ address: http://{{ $.Values.redis.url }}:{{ $.Values.redis.port }}
|
|
|
+ password: {{ $.Values.redis.password }}
|
|
|
type: STANDALONE
|
|
|
enabled: true
|
|
|
|
|
|
postgresql:
|
|
|
- url: jdbc:postgresql://10.224.0.102:5432/interlock
|
|
|
- username: postgres
|
|
|
- password: DLSZZKWQhA96REZmquUn4OVN
|
|
|
+ url: jdbc:postgresql://{{ $.Values.postgres.url }}:{{ $.Values.postgres.port }}/{{ $.Values.postgres.database }}
|
|
|
+ username: {{ $.Values.postgres.username }}
|
|
|
+ password: {{ $.Values.postgres.password }}
|
|
|
+
|
|
|
+iotedge:
|
|
|
+ ip: {{ $.Values.iotedge.url }}
|
|
|
+ port: {{ $.Values.iotedge.port }}
|
|
|
+
|
|
|
+sso:
|
|
|
+ ip: {{ $.Values.sso.url }}
|
|
|
+ port: {{ $.Values.sso.port }}
|
|
|
+ username: {{ $.Values.sso.username }}
|
|
|
+ password: {{ $.Values.sso.password }}
|
|
|
+
|
|
|
+notification:
|
|
|
+ ip: {{ $.Values.notification.url }}
|
|
|
+ port: {{ $.Values.notification.port }}
|