blob: cfab8e618385e1bcf3d1e81c25c257c27eca38d3 [file] [log] [blame]
Mandeep Khinda1d123882018-03-27 01:26:59 +00001# Copyright © 2017 Amdocs, Bell Canada
ChrisC019b59c2020-04-03 13:58:44 +02002# Modifications Copyright © 2018,2020 AT&T
Mandeep Khinda1d123882018-03-27 01:26:59 +00003#
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#################################################################
19global:
Krzysztof Opasiakeac587d2020-05-21 23:53:02 +020020 env:
21 tomcatDir: "/usr/local/tomcat"
Mandeep Khinda1d123882018-03-27 01:26:59 +000022 nodePortPrefix: 302
Mandeep Khinda1d123882018-03-27 01:26:59 +000023 readinessRepository: oomk8s
BorislavG3d6f9372018-04-15 11:55:39 +000024 readinessImage: readiness-check:2.0.0
Mandeep Khinda1d123882018-03-27 01:26:59 +000025 loggingRepository: docker.elastic.co
26 loggingImage: beats/filebeat:5.5.0
ChrisC019b59c2020-04-03 13:58:44 +020027 #AAF service
28 aafEnabled: true
Ondřej Šmalec7afb16f2020-04-08 12:31:29 +020029 aafAgentImage: onap/aaf/aaf_agent:2.1.20
Mandeep Khinda1d123882018-03-27 01:26:59 +000030
31#################################################################
32# Application configuration defaults.
33#################################################################
ChrisC019b59c2020-04-03 13:58:44 +020034
Mandeep Khinda1d123882018-03-27 01:26:59 +000035# application image
36repository: nexus3.onap.org:10001
ChrisC98e52d22020-05-20 14:50:23 +020037image: onap/portal-app:3.2.2
Mandeep Khinda1d123882018-03-27 01:26:59 +000038pullPolicy: Always
39
ChrisC019b59c2020-04-03 13:58:44 +020040#AAF local config
41
ChrisC53929942020-05-04 12:43:34 +020042aafURL: https://aaf-service:8100/authz/
ChrisC019b59c2020-04-03 13:58:44 +020043aafConfig:
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
60secrets:
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
Mandeep Khinda1d123882018-03-27 01:26:59 +000068# default number of instances
69replicaCount: 1
70
71nodeSelector: {}
72
73affinity: {}
74
75# probe configuration parameters
76liveness:
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
83readiness:
84 initialDelaySeconds: 10
85 periodSeconds: 10
86
87service:
Mandeep Khinda789ee4a2018-04-30 20:20:45 +000088 type: LoadBalancer
Mandeep Khinda1d123882018-03-27 01:26:59 +000089 name: portal-app
BorislavG1ffbd992018-04-24 07:56:27 +000090 portName: portal-app
Mandeep Khinda1d123882018-03-27 01:26:59 +000091 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
st782sbd2c6122018-09-28 17:56:29 -0400100 externalPort4: 8443
101 internalPort4: 8443
rootdaead432018-10-04 15:38:18 -0400102 nodePort4: 25
Mandeep Khinda1d123882018-03-27 01:26:59 +0000103
104mariadb:
Mandeep Khindaf8b8f072018-04-26 14:35:38 +0000105 service:
Mandeep Khinda1d123882018-03-27 01:26:59 +0000106 name: portal-db
107widget:
Mandeep Khindaf8b8f072018-04-26 14:35:38 +0000108 service:
Mandeep Khinda1d123882018-03-27 01:26:59 +0000109 name: portal-widget
Mandeep Khinda1d123882018-03-27 01:26:59 +0000110cassandra:
Mandeep Khindaf8b8f072018-04-26 14:35:38 +0000111 service:
Mandeep Khinda1d123882018-03-27 01:26:59 +0000112 name: portal-cassandra
113 config:
114 cassandraUsername: root
115 cassandraPassword: Aa123456
Mandeep Khinda1d123882018-03-27 01:26:59 +0000116zookeeper:
Mandeep Khindaf8b8f072018-04-26 14:35:38 +0000117 service:
Mandeep Khinda454e2fd2018-04-06 03:03:24 +0000118 name: portal-zookeeper
119messageRouter:
Mandeep Khindaf8b8f072018-04-26 14:35:38 +0000120 service:
Mandeep Khinda454e2fd2018-04-06 03:03:24 +0000121 name: message-router
Mandeep Khinda1d123882018-03-27 01:26:59 +0000122
123ingress:
124 enabled: false
Lucjan Bryndzaac1080a2019-11-26 13:04:47 +0100125 service:
Lucjan Bryndza05649652020-04-29 08:52:33 +0000126 - baseaddr: portal.api
Lucjan Bryndzaac1080a2019-11-26 13:04:47 +0100127 name: "portal-app"
128 port: 8443
129 config:
130 ssl: "redirect"
Mandeep Khinda1d123882018-03-27 01:26:59 +0000131
Mandeep Khinda60d36d42018-09-24 15:15:48 +0000132# Resource Limit flavor -By Default using small
Nishukumar75d48b92018-09-19 12:11:51 +0000133flavor: small
134# Segregation for Different environment (Small and Large)
135resources:
136 small:
137 limits:
Sylvain Desbureaux22b89c72019-10-29 12:00:36 +0100138 cpu: 2.2
139 memory: 800Mi
Nishukumar75d48b92018-09-19 12:11:51 +0000140 requests:
Sylvain Desbureaux22b89c72019-10-29 12:00:36 +0100141 cpu: 30m
142 memory: 460Mi
Nishukumar75d48b92018-09-19 12:11:51 +0000143 large:
144 limits:
145 cpu: 4
146 memory: 15Gi
147 requests:
148 cpu: 2
149 memory: 8Gi
Mandeep Khinda60d36d42018-09-24 15:15:48 +0000150 unlimited: {}