values.yaml 1.4 KB

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