blob: a71e0c4da3526e65c79bd21b08510b02e4983602 [file] [log] [blame]
Mandeep Khinda1d123882018-03-27 01:26:59 +00001# Copyright © 2017 Amdocs, Bell Canada
toshrajbhardwajf4fc1c62018-08-06 07:35:14 +00002# Modifications Copyright © 2018 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:
20 nodePortPrefix: 302
Mandeep Khinda1d123882018-03-27 01:26:59 +000021 readinessRepository: oomk8s
BorislavG3d6f9372018-04-15 11:55:39 +000022 readinessImage: readiness-check:2.0.0
Mandeep Khinda1d123882018-03-27 01:26:59 +000023 loggingRepository: docker.elastic.co
24 loggingImage: beats/filebeat:5.5.0
25
26#################################################################
27# Application configuration defaults.
28#################################################################
29# application image
30repository: nexus3.onap.org:10001
Alexis de Talhouët697e9962018-09-19 11:58:29 -040031image: onap/portal-app:2.3.0-STAGING-latest
Mandeep Khinda1d123882018-03-27 01:26:59 +000032pullPolicy: Always
33
Mandeep Khinda1d123882018-03-27 01:26:59 +000034# default number of instances
35replicaCount: 1
36
37nodeSelector: {}
38
39affinity: {}
40
41# probe configuration parameters
42liveness:
43 initialDelaySeconds: 10
44 periodSeconds: 10
45 # necessary to disable liveness probe when setting breakpoints
46 # in debugger so K8s doesn't restart unresponsive container
47 enabled: true
48
49readiness:
50 initialDelaySeconds: 10
51 periodSeconds: 10
52
53service:
Mandeep Khinda789ee4a2018-04-30 20:20:45 +000054 type: LoadBalancer
Mandeep Khinda1d123882018-03-27 01:26:59 +000055 name: portal-app
BorislavG1ffbd992018-04-24 07:56:27 +000056 portName: portal-app
Mandeep Khinda1d123882018-03-27 01:26:59 +000057 externalPort: 8989
58 internalPort: 8080
59 nodePort: 15
60 externalPort2: 8006
61 internalPort2: 8005
62 nodePort2: 13
63 externalPort3: 8010
64 internalPort3: 8009
65 nodePort3: 14
66
67mariadb:
Mandeep Khindaf8b8f072018-04-26 14:35:38 +000068 service:
Mandeep Khinda1d123882018-03-27 01:26:59 +000069 name: portal-db
70widget:
Mandeep Khindaf8b8f072018-04-26 14:35:38 +000071 service:
Mandeep Khinda1d123882018-03-27 01:26:59 +000072 name: portal-widget
Mandeep Khinda1d123882018-03-27 01:26:59 +000073cassandra:
Mandeep Khindaf8b8f072018-04-26 14:35:38 +000074 service:
Mandeep Khinda1d123882018-03-27 01:26:59 +000075 name: portal-cassandra
76 config:
77 cassandraUsername: root
78 cassandraPassword: Aa123456
Mandeep Khinda1d123882018-03-27 01:26:59 +000079zookeeper:
Mandeep Khindaf8b8f072018-04-26 14:35:38 +000080 service:
Mandeep Khinda454e2fd2018-04-06 03:03:24 +000081 name: portal-zookeeper
82messageRouter:
Mandeep Khindaf8b8f072018-04-26 14:35:38 +000083 service:
Mandeep Khinda454e2fd2018-04-06 03:03:24 +000084 name: message-router
Mandeep Khinda1d123882018-03-27 01:26:59 +000085
86ingress:
87 enabled: false
88
Mandeep Khinda60d36d42018-09-24 15:15:48 +000089# Resource Limit flavor -By Default using small
Nishukumar75d48b92018-09-19 12:11:51 +000090flavor: small
91# Segregation for Different environment (Small and Large)
92resources:
93 small:
94 limits:
95 cpu: 2
96 memory: 10Gi
97 requests:
98 cpu: 1
99 memory: 6Gi
100 large:
101 limits:
102 cpu: 4
103 memory: 15Gi
104 requests:
105 cpu: 2
106 memory: 8Gi
Mandeep Khinda60d36d42018-09-24 15:15:48 +0000107 unlimited: {}