123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118 |
- #
- # Copyright 2021 Apollo Authors
- #
- # Licensed under the Apache License, Version 2.0 (the "License");
- # you may not use this file except in compliance with the License.
- # You may obtain a copy of the License at
- #
- # http://www.apache.org/licenses/LICENSE-2.0
- #
- # Unless required by applicable law or agreed to in writing, software
- # distributed under the License is distributed on an "AS IS" BASIS,
- # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- # See the License for the specific language governing permissions and
- # limitations under the License.
- #
- configdb:
- name: apollo-configdb
- # apolloconfigdb host
- host: ""
- port: 3306
- dbName: ApolloConfigDB
- # apolloconfigdb user name
- userName: ""
- # apolloconfigdb password
- password: ""
- connectionStringProperties: characterEncoding=utf8
- service:
- # whether to create a Service for this host or not
- enabled: false
- fullNameOverride: ""
- port: 3306
- type: ClusterIP
- configService:
- name: apollo-configservice
- fullNameOverride: ""
- replicaCount: 2
- containerPort: 8080
- image:
- repository: apolloconfig/apollo-configservice
- tag: ""
- pullPolicy: IfNotPresent
- imagePullSecrets: []
- service:
- fullNameOverride: ""
- port: 8080
- targetPort: 8080
- type: ClusterIP
- ingress:
- enabled: false
- annotations: { }
- hosts:
- - host: ""
- paths: [ ]
- tls: [ ]
- liveness:
- initialDelaySeconds: 100
- periodSeconds: 10
- readiness:
- initialDelaySeconds: 30
- periodSeconds: 5
- config:
- # spring profiles to activate
- profiles: "github,kubernetes"
- # override apollo.config-service.url: config service url to be accessed by apollo-client
- configServiceUrlOverride: ""
- # override apollo.admin-service.url: admin service url to be accessed by apollo-portal
- adminServiceUrlOverride: ""
- # specify the context path, e.g. /apollo
- contextPath: ""
- # environment variables passed to the container, e.g. JAVA_OPTS
- env: {}
- strategy: {}
- resources: {}
- nodeSelector: {}
- tolerations: []
- affinity: {}
- adminService:
- name: apollo-adminservice
- fullNameOverride: ""
- replicaCount: 2
- containerPort: 8090
- image:
- repository: apolloconfig/apollo-adminservice
- tag: ""
- pullPolicy: IfNotPresent
- imagePullSecrets: []
- service:
- fullNameOverride: ""
- port: 8090
- targetPort: 8090
- type: ClusterIP
- ingress:
- enabled: false
- annotations: { }
- hosts:
- - host: ""
- paths: [ ]
- tls: [ ]
- liveness:
- initialDelaySeconds: 100
- periodSeconds: 10
- readiness:
- initialDelaySeconds: 30
- periodSeconds: 5
- config:
- # spring profiles to activate
- profiles: "github,kubernetes"
- # specify the context path, e.g. /apollo
- contextPath: ""
- # environment variables passed to the container, e.g. JAVA_OPTS
- env: {}
- strategy: {}
- resources: {}
- nodeSelector: {}
- tolerations: []
- affinity: {}
|