blob: 0724653b43febfc46a4ec7355cd91425b12f5d9e [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 ubuntuInit: ubuntu-init:1.0.0
26
27#################################################################
28# Application configuration defaults.
29#################################################################
30# application image
31repository: nexus3.onap.org:10001
Alexis de Talhouët697e9962018-09-19 11:58:29 -040032image: onap/portal-wms:2.3.0-STAGING-latest
Mandeep Khinda1d123882018-03-27 01:26:59 +000033pullPolicy: Always
34
35# flag to enable debugging - application support required
36debugEnabled: false
37
38# default number of instances
39replicaCount: 1
40
41nodeSelector: {}
42
43affinity: {}
44
45# probe configuration parameters
46liveness:
47 initialDelaySeconds: 10
48 periodSeconds: 10
49 # necessary to disable liveness probe when setting breakpoints
50 # in debugger so K8s doesn't restart unresponsive container
51 enabled: true
52
53readiness:
54 initialDelaySeconds: 10
55 periodSeconds: 10
56
57mariadb:
Mandeep Khindaf8b8f072018-04-26 14:35:38 +000058 service:
Mandeep Khinda1d123882018-03-27 01:26:59 +000059 name: portal-db
60
61service:
62 type: ClusterIP
63 name: portal-widget
BorislavG1ffbd992018-04-24 07:56:27 +000064 portName: portal-widget
Mandeep Khinda1d123882018-03-27 01:26:59 +000065 externalPort: 8082
66 internalPort: 8082
67
68ingress:
69 enabled: false
70
Mandeep Khinda60d36d42018-09-24 15:15:48 +000071# Resource Limit flavor -By Default using small
Nishukumar75d48b92018-09-19 12:11:51 +000072flavor: small
73# Segregation for Different environment (Small and Large)
74resources:
75 small:
76 limits:
77 cpu: 1
78 memory: 4Gi
79 requests:
80 cpu: 500m
81 memory: 2Gi
82 large:
83 limits:
84 cpu: 2
85 memory: 8Gi
86 requests:
87 cpu: 1
88 memory: 4Gi
Mandeep Khinda60d36d42018-09-24 15:15:48 +000089 unlimited: {}