values.yaml 1.4 KB

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