blob: 94da33019c258f0f8c927b9078a3626d1187ee56 [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
Sylvain Desbureaux1694e1d2020-08-21 09:58:25 +020021 readinessImage: onap/oom/readiness:3.0.1
Mandeep Khinda1d123882018-03-27 01:26:59 +000022 loggingRepository: docker.elastic.co
23 loggingImage: beats/filebeat:5.5.0
24 ubuntuInit: ubuntu-init:1.0.0
25
26#################################################################
27# Application configuration defaults.
28#################################################################
29# application image
30repository: nexus3.onap.org:10001
Sandeep Shah3d565522020-10-03 23:09:58 -050031image: onap/portal-wms:3.4.1
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
56mariadb:
Mandeep Khindaf8b8f072018-04-26 14:35:38 +000057 service:
Mandeep Khinda1d123882018-03-27 01:26:59 +000058 name: portal-db
59
60service:
61 type: ClusterIP
62 name: portal-widget
BorislavG1ffbd992018-04-24 07:56:27 +000063 portName: portal-widget
Mandeep Khinda1d123882018-03-27 01:26:59 +000064 externalPort: 8082
65 internalPort: 8082
66
67ingress:
68 enabled: false
69
Mandeep Khinda60d36d42018-09-24 15:15:48 +000070# Resource Limit flavor -By Default using small
Nishukumar75d48b92018-09-19 12:11:51 +000071flavor: small
72# Segregation for Different environment (Small and Large)
73resources:
74 small:
75 limits:
76 cpu: 1
Sylvain Desbureaux22b89c72019-10-29 12:00:36 +010077 memory: 430Mi
Nishukumar75d48b92018-09-19 12:11:51 +000078 requests:
Sylvain Desbureaux22b89c72019-10-29 12:00:36 +010079 cpu: 1m
80 memory: 360Mi
Nishukumar75d48b92018-09-19 12:11:51 +000081 large:
82 limits:
83 cpu: 2
84 memory: 8Gi
85 requests:
86 cpu: 1
87 memory: 4Gi
Mandeep Khinda60d36d42018-09-24 15:15:48 +000088 unlimited: {}