values.yaml 1.4 KB
Newer Older
1 2
name: apollo-portal
fullNameOverride: ""
H
Hongzhi 已提交
3
replicaCount: 1
4 5 6
containerPort: 8070
image:
  repository: apolloconfig/apollo-portal
7
  tag: ""
8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37
  pullPolicy: IfNotPresent
imagePullSecrets: []
service:
  fullNameOverride: ""
  port: 8070
  targetPort: 8070
  type: ClusterIP
  sessionAffinity: ClientIP
ingress:
  enabled: false
  annotations: {}
  hosts:
    - host: ""
      paths: []
  tls: []
liveness:
  initialDelaySeconds: 100
  periodSeconds: 10
readiness:
  initialDelaySeconds: 30
  periodSeconds: 5
# environment variables passed to the container, e.g. JAVA_OPTS
env: {}
strategy: {}
resources: {}
nodeSelector: {}
tolerations: []
affinity: {}

config:
38 39
  # spring profiles to activate
  profiles: "github,auth"
40 41 42 43 44 45
  # specify the env names, e.g. dev,pro
  envs: ""
  # specify the meta servers, e.g.
  # dev: http://apollo-configservice-dev:8080
  # pro: http://apollo-configservice-pro:8080
  metaServers: {}
46 47
  # specify the context path, e.g. /apollo
  contextPath: ""
48 49
  # extra config files for apollo-portal, e.g. application-ldap.yml
  files: {}
50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66

portaldb:
  name: apollo-portaldb
  # apolloportaldb host
  host:
  port: 3306
  dbName: ApolloPortalDB
  # apolloportaldb user name
  userName:
  # apolloportaldb password
  password:
  connectionStringProperties: characterEncoding=utf8
  service:
    # whether to create a Service for this host or not
    enabled: false
    fullNameOverride: ""
    port: 3306
H
Hongzhi 已提交
67
    type: ClusterIP