12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- server:
- port: 8520
- spring:
- ##mqtt配置
- mqtt:
- 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
- keepalive: 20
- topic: device/#
- datasource:
- dynamic:
- datasource:
- master:
- 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: {{ $.Values.redis.database }}
- host: {{ $.Values.redis.url }}
- port: {{ $.Values.redis.port }}
- password: {{ $.Values.redis.password }}
- jeecg:
- #分布式锁配置
- redisson:
- address: http://{{ $.Values.redis.url }}:{{ $.Values.redis.port }}
- password: {{ $.Values.redis.password }}
- type: STANDALONE
- enabled: true
- postgresql:
- 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 }}
|