values.yaml 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. configdb:
  2. name: apollo-configdb
  3. # apolloconfigdb host
  4. host: ""
  5. port: 3306
  6. dbName: ApolloConfigDB
  7. # apolloconfigdb user name
  8. userName: ""
  9. # apolloconfigdb password
  10. password: ""
  11. connectionStringProperties: characterEncoding=utf8
  12. service:
  13. # whether to create a Service for this host or not
  14. enabled: false
  15. fullNameOverride: ""
  16. port: 3306
  17. type: ClusterIP
  18. configService:
  19. name: apollo-configservice
  20. fullNameOverride: ""
  21. replicaCount: 2
  22. containerPort: 8080
  23. image:
  24. repository: apolloconfig/apollo-configservice
  25. pullPolicy: IfNotPresent
  26. imagePullSecrets: []
  27. service:
  28. fullNameOverride: ""
  29. port: 8080
  30. targetPort: 8080
  31. type: ClusterIP
  32. liveness:
  33. initialDelaySeconds: 100
  34. periodSeconds: 10
  35. readiness:
  36. initialDelaySeconds: 30
  37. periodSeconds: 5
  38. config:
  39. # override apollo.config-service.url: config service url to be accessed by apollo-client
  40. configServiceUrlOverride: ""
  41. # override apollo.admin-service.url: admin service url to be accessed by apollo-portal
  42. adminServiceUrlOverride: ""
  43. # environment variables passed to the container, e.g. JAVA_OPTS
  44. env: {}
  45. strategy: {}
  46. resources: {}
  47. nodeSelector: {}
  48. tolerations: []
  49. affinity: {}
  50. adminService:
  51. name: apollo-adminservice
  52. fullNameOverride: ""
  53. replicaCount: 2
  54. containerPort: 8090
  55. image:
  56. repository: apolloconfig/apollo-adminservice
  57. pullPolicy: IfNotPresent
  58. imagePullSecrets: []
  59. service:
  60. fullNameOverride: ""
  61. port: 8090
  62. targetPort: 8090
  63. type: ClusterIP
  64. liveness:
  65. initialDelaySeconds: 100
  66. periodSeconds: 10
  67. readiness:
  68. initialDelaySeconds: 30
  69. periodSeconds: 5
  70. # environment variables passed to the container, e.g. JAVA_OPTS
  71. env: {}
  72. strategy: {}
  73. resources: {}
  74. nodeSelector: {}
  75. tolerations: []
  76. affinity: {}