Portal-app auto cert gen
[oom.git] / kubernetes / portal / charts / portal-sdk / values.yaml
1 # Copyright © 2017 Amdocs, Bell Canada
2 # Modifications Copyright © 2018, 2020 AT&T
3 #
4 # Licensed under the Apache License, Version 2.0 (the "License");
5 # you may not use this file except in compliance with the License.
6 # You may obtain a copy of the License at
7 #
8 #       http://www.apache.org/licenses/LICENSE-2.0
9 #
10 # Unless required by applicable law or agreed to in writing, software
11 # distributed under the License is distributed on an "AS IS" BASIS,
12 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 # See the License for the specific language governing permissions and
14 # limitations under the License.
15
16 #################################################################
17 # Global configuration defaults.
18 #################################################################
19 global:
20   nodePortPrefix: 302
21   readinessRepository: oomk8s
22   readinessImage: readiness-check:2.0.0
23   loggingRepository: docker.elastic.co
24   loggingImage: beats/filebeat:5.5.0
25   persistence: {}
26   #AAF service
27   aafEnabled: true
28
29 #################################################################
30 # Application configuration defaults.
31 #################################################################
32
33 # application image
34 repository: nexus3.onap.org:10001
35 image: onap/portal-sdk:2.6.0
36 pullPolicy: Always
37
38 #AAF local config
39 aafURL: https://aaf-service:8100/
40 aafConfig:
41   aafDeployFqi: deployer@people.osaaf.org
42   aafDeployPass: demo123456!
43   fqdn: portal
44   fqi: portal@portal.onap.org
45   publicFqdn: portal.onap.org
46   cadi_latitude: "38.0"
47   cadi_longitude: "-72.0"
48   credsPath: /opt/app/osaaf/local
49   app_ns: org.osaaf.aaf
50   permission_user: 1000
51   permission_group: 999
52   addconfig:  true
53   secret_uid: &aaf_secret_uid portal-sdk-aaf-deploy-creds
54   keystoreFile: "org.onap.portal.p12"
55   truststoreFile: "org.onap.portal.trust.jks"
56
57 secrets:
58   - uid: *aaf_secret_uid
59     type: basicAuth
60     externalSecret: '{{ ternary (tpl (default "" .Values.aafConfig.aafDeployCredsExternalSecret) .) "aafIsDiabled" .Values.global.aafEnabled }}'
61     login: '{{ .Values.aafConfig.aafDeployFqi }}'
62     password: '{{ .Values.aafConfig.aafDeployPass }}'
63     passwordPolicy: required
64
65 # flag to enable debugging - application support required
66 debugEnabled: false
67
68 # default number of instances
69 replicaCount: 1
70
71 nodeSelector: {}
72
73 affinity: {}
74
75 # probe configuration parameters
76 liveness:
77   initialDelaySeconds: 10
78   periodSeconds: 10
79   # necessary to disable liveness probe when setting breakpoints
80   # in debugger so K8s doesn't restart unresponsive container
81   enabled: true
82
83 readiness:
84   initialDelaySeconds: 10
85   periodSeconds: 10
86
87 service:
88   type: NodePort
89   name: portal-sdk
90   portName: portal-sdk
91   internalPort: 8443
92   externalPort: 8443
93   nodePort: 12
94
95 mariadb:
96   service:
97     name: portal-db
98 widget:
99   service:
100     name: portal-widget
101 cassandra:
102   service:
103     name: portal-cassandra
104   config:
105     cassandraUsername: root
106     cassandraPassword: Aa123456
107 zookeeper:
108   service:
109     name: portal-zookeeper
110 messageRouter:
111   service:
112     name: message-router
113
114 ingress:
115   enabled: false
116   service:
117     - baseaddr: portalsdk
118       name: "portal-sdk"
119       port: 8443
120   config:
121     ssl: "none"
122
123 # Resource Limit flavor -By Default using small
124 flavor: small
125 # Segregation for Different environment (Small and Large)
126 resources:
127   small:
128     limits:
129       cpu: 600m
130       memory: 1.6Gi
131     requests:
132       cpu: 10m
133       memory: 1.3Gi
134   large:
135     limits:
136       cpu: 8
137       memory: 20Gi
138     requests:
139       cpu: 4
140       memory: 10Gi
141   unlimited: {}