[GENERAL] Use readiness container v3.0.1
[oom.git] / kubernetes / sdc / charts / sdc-dcae-dt / values.yaml
1 # Copyright © 2017 Amdocs, Bell Canada
2 #
3 # Licensed under the Apache License, Version 2.0 (the "License");
4 # you may not use this file except in compliance with the License.
5 # You may obtain a copy of the License at
6 #
7 #       http://www.apache.org/licenses/LICENSE-2.0
8 #
9 # Unless required by applicable law or agreed to in writing, software
10 # distributed under the License is distributed on an "AS IS" BASIS,
11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 # See the License for the specific language governing permissions and
13 # limitations under the License.
14
15 #################################################################
16 # Global configuration defaults.
17 #################################################################
18 global:
19   nodePortPrefix: 302
20   readinessImage: onap/oom/readiness:3.0.1
21   loggingRepository: docker.elastic.co
22   loggingImage: beats/filebeat:5.5.0
23
24 #################################################################
25 # Application configuration defaults.
26 #################################################################
27 # application image
28 repository: nexus3.onap.org:10001
29 image: onap/dcae-dt:1.3.4
30 pullPolicy: IfNotPresent
31 config:
32   javaOptions: -XX:MaxPermSize=256m -Xmx1024m -Dconfig.home=config -Dlog.home=/var/lib/jetty/logs/ -Dlogging.config=config/dcae-dt/logback-spring.xml
33
34 # default number of instances
35 replicaCount: 1
36
37 nodeSelector: {}
38
39 affinity: {}
40
41 # probe configuration parameters
42 liveness:
43   initialDelaySeconds: 10
44   periodSeconds: 10
45   enabled: false
46
47 readiness:
48   initialDelaySeconds: 10
49   periodSeconds: 10
50
51 service:
52   type: NodePort
53   name: sdc-dcae-dt
54   portName: dcae-dt
55   nodePort: "66"
56   internalPort: 9446
57
58 ingress:
59   enabled: false
60   service:
61     - baseaddr: "dcaedt"
62       name: "sdc-dcae-dt"
63       port: 9446
64   config:
65     ssl: "redirect"
66
67 # Resource Limit flavor -By Default using small
68 flavor: small
69 # Segregation for Different environment (Small and Large)
70 resources:
71   small:
72     limits:
73       cpu: 1
74       memory: 4Gi
75     requests:
76       cpu: 10m
77       memory: 1Gi
78   large:
79     limits:
80       cpu: 2
81       memory: 8Gi
82     requests:
83       cpu: 20m
84       memory: 2Gi
85   unlimited: {}