values.yaml 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  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. name: apollo-portal
  17. fullNameOverride: ""
  18. replicaCount: 1
  19. containerPort: 8070
  20. image:
  21. repository: apolloconfig/apollo-portal
  22. tag: ""
  23. pullPolicy: IfNotPresent
  24. imagePullSecrets: []
  25. service:
  26. fullNameOverride: ""
  27. port: 8070
  28. targetPort: 8070
  29. type: ClusterIP
  30. sessionAffinity: ClientIP
  31. ingress:
  32. enabled: false
  33. annotations: {}
  34. hosts:
  35. - host: ""
  36. paths: []
  37. tls: []
  38. liveness:
  39. initialDelaySeconds: 100
  40. periodSeconds: 10
  41. readiness:
  42. initialDelaySeconds: 30
  43. periodSeconds: 5
  44. # environment variables passed to the container, e.g. JAVA_OPTS
  45. env: {}
  46. strategy: {}
  47. resources: {}
  48. nodeSelector: {}
  49. tolerations: []
  50. affinity: {}
  51. config:
  52. # spring profiles to activate
  53. profiles: "github,auth"
  54. # specify the env names, e.g. dev,pro
  55. envs: ""
  56. # specify the meta servers, e.g.
  57. # dev: http://apollo-configservice-dev:8080
  58. # pro: http://apollo-configservice-pro:8080
  59. metaServers: {}
  60. # specify the context path, e.g. /apollo
  61. contextPath: ""
  62. # extra config files for apollo-portal, e.g. application-ldap.yml
  63. files: {}
  64. portaldb:
  65. name: apollo-portaldb
  66. # apolloportaldb host
  67. host:
  68. port: 3306
  69. dbName: ApolloPortalDB
  70. # apolloportaldb user name
  71. userName:
  72. # apolloportaldb password
  73. password:
  74. connectionStringProperties: characterEncoding=utf8
  75. service:
  76. # whether to create a Service for this host or not
  77. enabled: false
  78. fullNameOverride: ""
  79. port: 3306
  80. type: ClusterIP