values.yaml 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  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. tag: ""
  26. pullPolicy: IfNotPresent
  27. imagePullSecrets: []
  28. service:
  29. fullNameOverride: ""
  30. port: 8080
  31. targetPort: 8080
  32. type: ClusterIP
  33. ingress:
  34. enabled: false
  35. annotations: { }
  36. hosts:
  37. - host: ""
  38. paths: [ ]
  39. tls: [ ]
  40. liveness:
  41. initialDelaySeconds: 100
  42. periodSeconds: 10
  43. readiness:
  44. initialDelaySeconds: 30
  45. periodSeconds: 5
  46. config:
  47. # spring profiles to activate
  48. profiles: "github,kubernetes"
  49. # override apollo.config-service.url: config service url to be accessed by apollo-client
  50. configServiceUrlOverride: ""
  51. # override apollo.admin-service.url: admin service url to be accessed by apollo-portal
  52. adminServiceUrlOverride: ""
  53. # specify the context path, e.g. /apollo
  54. contextPath: ""
  55. # environment variables passed to the container, e.g. JAVA_OPTS
  56. env: {}
  57. strategy: {}
  58. resources: {}
  59. nodeSelector: {}
  60. tolerations: []
  61. affinity: {}
  62. adminService:
  63. name: apollo-adminservice
  64. fullNameOverride: ""
  65. replicaCount: 2
  66. containerPort: 8090
  67. image:
  68. repository: apolloconfig/apollo-adminservice
  69. tag: ""
  70. pullPolicy: IfNotPresent
  71. imagePullSecrets: []
  72. service:
  73. fullNameOverride: ""
  74. port: 8090
  75. targetPort: 8090
  76. type: ClusterIP
  77. ingress:
  78. enabled: false
  79. annotations: { }
  80. hosts:
  81. - host: ""
  82. paths: [ ]
  83. tls: [ ]
  84. liveness:
  85. initialDelaySeconds: 100
  86. periodSeconds: 10
  87. readiness:
  88. initialDelaySeconds: 30
  89. periodSeconds: 5
  90. config:
  91. # spring profiles to activate
  92. profiles: "github,kubernetes"
  93. # specify the context path, e.g. /apollo
  94. contextPath: ""
  95. # environment variables passed to the container, e.g. JAVA_OPTS
  96. env: {}
  97. strategy: {}
  98. resources: {}
  99. nodeSelector: {}
  100. tolerations: []
  101. affinity: {}