admin-values.yaml 850 B

12345678910111213141516171819202122232425262728293031323334
  1. ingress:
  2. enabled: true
  3. hosts:
  4. - host: admin.canal.com
  5. paths:
  6. - path: /
  7. pathType: ImplementationSpecific
  8. admin:
  9. config: |
  10. server:
  11. port: 8089
  12. spring:
  13. jackson:
  14. date-format: yyyy-MM-dd HH:mm:ss
  15. time-zone: GMT+8
  16. spring.datasource:
  17. address: you_db_host:3306
  18. database: canal_manager
  19. username: ****
  20. password: ****
  21. driver-class-name: com.mysql.jdbc.Driver
  22. url: jdbc:mysql://${spring.datasource.address}/${spring.datasource.database}?useUnicode=true&characterEncoding=UTF-8&useSSL=false&allowPublicKeyRetrieval=true
  23. hikari:
  24. maximum-pool-size: 30
  25. minimum-idle: 1
  26. canal:
  27. adminUser: admin
  28. adminPasswd: admin
  29. debug: true
  30. image:
  31. repository: registry.us-east-1.aliyuncs.com/sll0/canal-admin
  32. tag: "latest"