values.yaml 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  1. #
  2. # Copyright 2021 Apollo Authors
  3. #
  4. # Licensed under the Apache License, Version 2.0 (the "License");
  5. # you may not use this file except in compliance with the License.
  6. # You may obtain a copy of the License at
  7. #
  8. # http://www.apache.org/licenses/LICENSE-2.0
  9. #
  10. # Unless required by applicable law or agreed to in writing, software
  11. # distributed under the License is distributed on an "AS IS" BASIS,
  12. # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. # See the License for the specific language governing permissions and
  14. # limitations under the License.
  15. #
  16. configdb:
  17. name: apollo-configdb
  18. # apolloconfigdb host
  19. host: ""
  20. port: 3306
  21. dbName: ApolloConfigDB
  22. # apolloconfigdb user name
  23. userName: ""
  24. # apolloconfigdb password
  25. password: ""
  26. connectionStringProperties: characterEncoding=utf8
  27. service:
  28. # whether to create a Service for this host or not
  29. enabled: false
  30. fullNameOverride: ""
  31. port: 3306
  32. type: ClusterIP
  33. configService:
  34. name: apollo-configservice
  35. fullNameOverride: ""
  36. replicaCount: 2
  37. containerPort: 8080
  38. image:
  39. repository: apolloconfig/apollo-configservice
  40. tag: ""
  41. pullPolicy: IfNotPresent
  42. imagePullSecrets: []
  43. service:
  44. fullNameOverride: ""
  45. port: 8080
  46. targetPort: 8080
  47. type: ClusterIP
  48. ingress:
  49. enabled: false
  50. annotations: { }
  51. hosts:
  52. - host: ""
  53. paths: [ ]
  54. tls: [ ]
  55. liveness:
  56. initialDelaySeconds: 100
  57. periodSeconds: 10
  58. readiness:
  59. initialDelaySeconds: 30
  60. periodSeconds: 5
  61. config:
  62. # spring profiles to activate
  63. profiles: "github,kubernetes"
  64. # override apollo.config-service.url: config service url to be accessed by apollo-client
  65. configServiceUrlOverride: ""
  66. # override apollo.admin-service.url: admin service url to be accessed by apollo-portal
  67. adminServiceUrlOverride: ""
  68. # specify the context path, e.g. /apollo
  69. contextPath: ""
  70. # environment variables passed to the container, e.g. JAVA_OPTS
  71. env: {}
  72. strategy: {}
  73. resources: {}
  74. nodeSelector: {}
  75. tolerations: []
  76. affinity: {}
  77. adminService:
  78. name: apollo-adminservice
  79. fullNameOverride: ""
  80. replicaCount: 2
  81. containerPort: 8090
  82. image:
  83. repository: apolloconfig/apollo-adminservice
  84. tag: ""
  85. pullPolicy: IfNotPresent
  86. imagePullSecrets: []
  87. service:
  88. fullNameOverride: ""
  89. port: 8090
  90. targetPort: 8090
  91. type: ClusterIP
  92. ingress:
  93. enabled: false
  94. annotations: { }
  95. hosts:
  96. - host: ""
  97. paths: [ ]
  98. tls: [ ]
  99. liveness:
  100. initialDelaySeconds: 100
  101. periodSeconds: 10
  102. readiness:
  103. initialDelaySeconds: 30
  104. periodSeconds: 5
  105. config:
  106. # spring profiles to activate
  107. profiles: "github,kubernetes"
  108. # specify the context path, e.g. /apollo
  109. contextPath: ""
  110. # environment variables passed to the container, e.g. JAVA_OPTS
  111. env: {}
  112. strategy: {}
  113. resources: {}
  114. nodeSelector: {}
  115. tolerations: []
  116. affinity: {}