blob: 8572ff83dac5060339861fdb16299c5cbe8d11c9 [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
Welch, Lorraine (lb2391)67785102019-09-18 13:41:36 -040031image: onap/portal-sdk:2.6.0
Mandeep Khinda1d123882018-03-27 01:26:59 +000032pullPolicy: Always
33
34# flag to enable debugging - application support required
35debugEnabled: false
36
37# default number of instances
38replicaCount: 1
39
40nodeSelector: {}
41
42affinity: {}
43
44# probe configuration parameters
45liveness:
46 initialDelaySeconds: 10
47 periodSeconds: 10
48 # necessary to disable liveness probe when setting breakpoints
49 # in debugger so K8s doesn't restart unresponsive container
50 enabled: true
51
52readiness:
53 initialDelaySeconds: 10
54 periodSeconds: 10
55
56service:
hb123fb53c6a32018-07-12 14:21:16 -040057 type: NodePort
Mandeep Khinda1d123882018-03-27 01:26:59 +000058 name: portal-sdk
BorislavG1ffbd992018-04-24 07:56:27 +000059 portName: portal-sdk
Mandeep Khinda1d123882018-03-27 01:26:59 +000060 internalPort: 8080
Mandeep Khindafe527eb2018-10-16 09:56:34 -040061 externalPort: 8080
BorislavGcdbd3ab2018-07-17 08:42:23 +000062 nodePort: 12
Mandeep Khinda1d123882018-03-27 01:26:59 +000063
64mariadb:
Mandeep Khindaf8b8f072018-04-26 14:35:38 +000065 service:
Mandeep Khinda1d123882018-03-27 01:26:59 +000066 name: portal-db
Mandeep Khinda454e2fd2018-04-06 03:03:24 +000067widget:
Mandeep Khindaf8b8f072018-04-26 14:35:38 +000068 service:
Mandeep Khinda454e2fd2018-04-06 03:03:24 +000069 name: portal-widget
Mandeep Khinda1d123882018-03-27 01:26:59 +000070cassandra:
Mandeep Khindaf8b8f072018-04-26 14:35:38 +000071 service:
Mandeep Khinda1d123882018-03-27 01:26:59 +000072 name: portal-cassandra
73 config:
74 cassandraUsername: root
75 cassandraPassword: Aa123456
Mandeep Khinda1d123882018-03-27 01:26:59 +000076zookeeper:
Mandeep Khindaf8b8f072018-04-26 14:35:38 +000077 service:
Mandeep Khinda454e2fd2018-04-06 03:03:24 +000078 name: portal-zookeeper
79messageRouter:
Mandeep Khindaf8b8f072018-04-26 14:35:38 +000080 service:
Mandeep Khinda454e2fd2018-04-06 03:03:24 +000081 name: message-router
Mandeep Khinda1d123882018-03-27 01:26:59 +000082
83ingress:
84 enabled: false
Lucjan Bryndzaac1080a2019-11-26 13:04:47 +010085 service:
86 - baseaddr: portalsdk
87 name: "portal-sdk"
88 port: 8080
89 config:
90 ssl: "none"
Mandeep Khinda1d123882018-03-27 01:26:59 +000091
Mandeep Khinda60d36d42018-09-24 15:15:48 +000092# Resource Limit flavor -By Default using small
Nishukumar75d48b92018-09-19 12:11:51 +000093flavor: small
94# Segregation for Different environment (Small and Large)
95resources:
96 small:
97 limits:
Sylvain Desbureaux22b89c72019-10-29 12:00:36 +010098 cpu: 600m
99 memory: 1.6Gi
Nishukumar75d48b92018-09-19 12:11:51 +0000100 requests:
Sylvain Desbureaux22b89c72019-10-29 12:00:36 +0100101 cpu: 10m
102 memory: 1.3Gi
Nishukumar75d48b92018-09-19 12:11:51 +0000103 large:
104 limits:
105 cpu: 8
106 memory: 20Gi
107 requests:
108 cpu: 4
109 memory: 10Gi
Mandeep Khinda60d36d42018-09-24 15:15:48 +0000110 unlimited: {}