Merge "Top up version of HV-VES"
[oom.git] / kubernetes / cds / values.yaml
1 # Copyright © 2019 Orange, Bell Canada
2 # Copyright © 2017 Amdocs, Bell Canada
3 #
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 #################################################################
19 global:
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
34 repository: nexus3.onap.org:10001
35 pullPolicy: Always
36
37
38 subChartsOnly:
39   enabled: true
40
41 # flag to enable debugging - application support required
42 debugEnabled: false
43
44 # default number of instances
45 replicaCount: 1
46
47 nodeSelector: {}
48
49 affinity: {}
50
51 # probe configuration parameters
52 liveness:
53   initialDelaySeconds: 10
54   periodSeconds: 10
55   # necessary to disable liveness probe when setting breakpoints
56   # in debugger so K8s doesn't restart unresponsive container
57   enabled: true
58
59 readiness:
60   initialDelaySeconds: 10
61   periodSeconds: 10
62
63 ingress:
64   enabled: false
65
66
67 mariadb-galera:
68   config:
69       userName: sdnctl
70       userPassword: sdnctl
71       mariadbRootPassword: sdnctl
72       mysqlDatabase: sdnctl
73   nameOverride: cds-db
74   service:
75     name: cds-db
76     portName: cds-db
77   replicaCount: 1
78   persistence:
79     enabled: true
80     mountSubPath: cds/data
81
82 #Resource Limit flavor -By Default using small
83 flavor: small
84 #segregation for different envionment (Small and Large)
85
86 resources:
87   small:
88     limits:
89       cpu: 2
90       memory: 4Gi
91     requests:
92       cpu: 1
93       memory: 2Gi
94   large:
95     limits:
96       cpu: 4
97       memory: 8Gi
98     requests:
99       cpu: 2
100       memory: 4Gi
101   unlimited: {}