[DCAEMOD] Uses new tpls for repos / images
[oom.git] / kubernetes / portal / components / portal-app / 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   env:
21     tomcatDir: "/usr/local/tomcat"
22   nodePortPrefix: 302
23   readinessImage: onap/oom/readiness:3.0.1
24   loggingRepository: docker.elastic.co
25   loggingImage: beats/filebeat:5.5.0
26   envsubstImage: dibi/envsubst
27   #AAF service
28   aafEnabled: true
29
30 ################################################################
31 # Secrets metaconfig
32 #################################################################
33
34 secrets:
35   - uid: portal-cass
36     type: basicAuth
37     externalSecret: '{{ tpl (default "" .Values.cassandra.config.cassandraExternalSecret) . }}'
38     login: '{{ .Values.cassandra.config.cassandraUsername }}'
39     password: '{{ .Values.cassandra.config.cassandraPassword }}'
40     passwordPolicy: required
41   - uid: cipher-enc-key
42     type: password
43     externalSecret: '{{ .Values.config.cipherEncKeyExternalSecret}}'
44     password: '{{ .Values.config.cipherEncKey }}'
45     passwordPolicy: required
46   - uid: portal-backend-db
47     type: basicAuth
48     externalSecret: '{{ tpl (default "" .Values.mariadb.config.backendDbExternalSecret) . }}'
49     login: '{{ .Values.mariadb.config.backendUserName }}'
50     password: '{{ .Values.mariadb.config.backendPassword }}'
51     passwordPolicy: required
52
53 #################################################################
54 # Application configuration defaults.
55 #################################################################
56
57 # application image
58 repository: nexus3.onap.org:10001
59 image: onap/portal-app:3.4.2
60 pullPolicy: Always
61
62 # application configuration
63 config:
64   # cipherEncKeyExternalSecret: some secret
65   cipherEncKey: AGLDdG4D04BKm2IxIWEr8o==!
66
67 #AAF local config
68
69 aafURL: https://aaf-service:8100/authz/
70 certInitializer:
71   nameOverride: portal-app-cert-initializer
72   aafDeployFqi: deployer@people.osaaf.org
73   aafDeployPass: demo123456!
74   fqdn: portal
75   fqi: portal@portal.onap.org
76   public_fqdn: portal.onap.org
77   cadi_latitude: "38.0"
78   cadi_longitude: "-72.0"
79   credsPath: /opt/app/osaaf/local
80   app_ns: org.osaaf.aaf
81   permission_user: 1000
82   permission_group: 999
83   keystoreFile: "org.onap.portal.p12"
84   truststoreFile: "org.onap.portal.trust.jks"
85   aaf_add_config: >
86     /opt/app/aaf_config/bin/agent.sh;
87     /opt/app/aaf_config/bin/agent.sh local showpass \
88     {{.Values.fqi}} {{ .Values.fqdn }} > {{ .Values.credsPath }}/mycreds.prop
89
90 # default number of instances
91 replicaCount: 1
92
93 nodeSelector: {}
94
95 affinity: {}
96
97 # probe configuration parameters
98 liveness:
99   initialDelaySeconds: 10
100   periodSeconds: 10
101   # necessary to disable liveness probe when setting breakpoints
102   # in debugger so K8s doesn't restart unresponsive container
103   enabled: true
104
105 readiness:
106   initialDelaySeconds: 10
107   periodSeconds: 10
108
109 service:
110   type: LoadBalancer
111   name: portal-app
112   portName: portal-app
113   externalPort: 8989
114   internalPort: 8080
115   nodePort: 15
116   externalPort2: 8006
117   internalPort2: 8005
118   nodePort2: 13
119   externalPort3: 8010
120   internalPort3: 8009
121   nodePort3: 14
122   externalPort4: 8443
123   internalPort4: 8443
124   nodePort4: 25
125
126 mariadb:
127   service:
128     name: portal-db
129   config:
130     # backendDbExternalSecret: some secret
131     backendUserName: portal
132     backendPassword: portal
133 widget:
134   service:
135     name: portal-widget
136 cassandra:
137   service:
138     name: portal-cassandra
139   config:
140     # cassandraExternalSecret: some secret
141     cassandraUsername: root
142     cassandraPassword: Aa123456
143 messageRouter:
144   service:
145     name: message-router
146
147 ingress:
148   enabled: false
149   service:
150     - baseaddr: portal.api
151       name: "portal-app"
152       port: 8443
153   config:
154     ssl: "redirect"
155
156 # Resource Limit flavor -By Default using small
157 flavor: small
158 # Segregation for Different environment (Small and Large)
159 resources:
160   small:
161     limits:
162       cpu: 2.2
163       memory: 800Mi
164     requests:
165       cpu: 30m
166       memory: 460Mi
167   large:
168     limits:
169       cpu: 4
170       memory: 15Gi
171     requests:
172       cpu: 2
173       memory: 8Gi
174   unlimited: {}