blob: fec878960cac9224f968854a8fe967bcf558585a [file] [log] [blame]
Abdelmuhaimen Seaudif487c952019-09-03 17:45:29 +00001# Copyright © 2019 Orange, Bell Canada
2# Copyright © 2017 Amdocs, Bell Canada
Sylvain Desbureaux7acab562019-03-01 09:26:13 +01003#
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
Abdelmuhaimen Seaudif487c952019-09-03 17:45:29 +000016#################################################################
17# Global configuration defaults.
18#################################################################
19global:
20 nodePortPrefix: 302
21 nodePortPrefixExt: 304
22 repository: nexus3.onap.org:10001
23 readinessRepository: oomk8s
24 readinessImage: readiness-check:2.0.2
25 loggingRepository: docker.elastic.co
26 loggingImage: beats/filebeat:5.5.0
27 persistence:
28 mountPath: /dockerdata-nfs
29
30#################################################################
31# Application configuration defaults.
32#################################################################
33# application images
34repository: nexus3.onap.org:10001
35pullPolicy: Always
36
37
38subChartsOnly:
39 enabled: true
40
41# flag to enable debugging - application support required
42debugEnabled: false
43
44# default number of instances
45replicaCount: 1
46
47nodeSelector: {}
48
49affinity: {}
50
51# probe configuration parameters
52liveness:
Oleg Mitsura3a621182019-10-09 12:40:11 -040053 initialDelaySeconds: 20
54 periodSeconds: 20
55 timeoutSeconds: 20
Abdelmuhaimen Seaudif487c952019-09-03 17:45:29 +000056 # necessary to disable liveness probe when setting breakpoints
57 # in debugger so K8s doesn't restart unresponsive container
58 enabled: true
59
60readiness:
61 initialDelaySeconds: 10
62 periodSeconds: 10
63
64ingress:
65 enabled: false
66
67
Alexis de Talhouët63df1632019-03-20 08:17:58 -040068mariadb-galera:
69 config:
70 userName: sdnctl
71 userPassword: sdnctl
72 mariadbRootPassword: sdnctl
73 mysqlDatabase: sdnctl
74 nameOverride: cds-db
75 service:
76 name: cds-db
77 portName: cds-db
78 replicaCount: 1
79 persistence:
80 enabled: true
Abdelmuhaimen Seaudif487c952019-09-03 17:45:29 +000081 mountSubPath: cds/data
82
83#Resource Limit flavor -By Default using small
84flavor: small
85#segregation for different envionment (Small and Large)
86
87resources:
88 small:
89 limits:
90 cpu: 2
91 memory: 4Gi
92 requests:
93 cpu: 1
94 memory: 2Gi
95 large:
96 limits:
97 cpu: 4
98 memory: 8Gi
99 requests:
100 cpu: 2
101 memory: 4Gi
102 unlimited: {}