Merge "[SDNC] Use common aaf template in sdnc"
[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   readinessRepository: oomk8s
24   readinessImage: readiness-check:2.0.0
25   loggingRepository: docker.elastic.co
26   loggingImage: beats/filebeat:5.5.0
27   #AAF service
28   aafEnabled: true
29   aafAgentImage: onap/aaf/aaf_agent:2.1.20
30
31 #################################################################
32 # Application configuration defaults.
33 #################################################################
34
35 # application image
36 repository: nexus3.onap.org:10001
37 image: onap/portal-app:3.2.2
38 pullPolicy: Always
39
40 #AAF local config
41
42 aafURL: https://aaf-service:8100/authz/
43 aafConfig:
44   aafDeployFqi: deployer@people.osaaf.org
45   aafDeployPass: demo123456!
46   fqdn: portal
47   fqi: portal@portal.onap.org
48   publicFqdn: portal.onap.org
49   cadi_latitude: "38.0"
50   cadi_longitude: "-72.0"
51   credsPath: /opt/app/osaaf/local
52   app_ns: org.osaaf.aaf
53   permission_user: 1000
54   permission_group: 999
55   addconfig: true
56   secret_uid: &aaf_secret_uid portal-app-aaf-deploy-creds
57   keystoreFile: "org.onap.portal.p12"
58   truststoreFile: "org.onap.portal.trust.jks"
59
60 secrets:
61   - uid: *aaf_secret_uid
62     type: basicAuth
63     externalSecret: '{{ ternary (tpl (default "" .Values.aafConfig.aafDeployCredsExternalSecret) .) "aafIsDiabled" .Values.global.aafEnabled }}'
64     login: '{{ .Values.aafConfig.aafDeployFqi }}'
65     password: '{{ .Values.aafConfig.aafDeployPass }}'
66     passwordPolicy: required
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: LoadBalancer
89   name: portal-app
90   portName: portal-app
91   externalPort: 8989
92   internalPort: 8080
93   nodePort: 15
94   externalPort2: 8006
95   internalPort2: 8005
96   nodePort2: 13
97   externalPort3: 8010
98   internalPort3: 8009
99   nodePort3: 14
100   externalPort4: 8443
101   internalPort4: 8443
102   nodePort4: 25
103
104 mariadb:
105   service:
106     name: portal-db
107 widget:
108   service:
109     name: portal-widget
110 cassandra:
111   service:
112     name: portal-cassandra
113   config:
114     cassandraUsername: root
115     cassandraPassword: Aa123456
116 zookeeper:
117   service:
118     name: portal-zookeeper
119 messageRouter:
120   service:
121     name: message-router
122
123 ingress:
124   enabled: false
125   service:
126     - baseaddr: portal.api
127       name: "portal-app"
128       port: 8443
129   config:
130     ssl: "redirect"
131
132 # Resource Limit flavor -By Default using small
133 flavor: small
134 # Segregation for Different environment (Small and Large)
135 resources:
136   small:
137     limits:
138       cpu: 2.2
139       memory: 800Mi
140     requests:
141       cpu: 30m
142       memory: 460Mi
143   large:
144     limits:
145       cpu: 4
146       memory: 15Gi
147     requests:
148       cpu: 2
149       memory: 8Gi
150   unlimited: {}