12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 |
- #
- # 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.
- #
- name: apollo-portal
- fullNameOverride: ""
- replicaCount: 1
- containerPort: 8070
- image:
- repository: apolloconfig/apollo-portal
- tag: ""
- 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:
- # spring profiles to activate
- profiles: "github,auth"
- # 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: {}
- # specify the context path, e.g. /apollo
- contextPath: ""
- # extra config files for apollo-portal, e.g. application-ldap.yml
- files: {}
- 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
- type: ClusterIP
|