[GENERAL] Use readiness container v3.0.1
[oom.git] / kubernetes / sdc / charts / sdc-be / values.yaml
1 # Copyright © 2017 Amdocs, Bell Canada
2 # Modifications Copyright © 2018 AT&T, ZTE
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   readinessImage: onap/oom/readiness:3.0.1
22   loggingRepository: docker.elastic.co
23   loggingImage: beats/filebeat:5.5.0
24
25 #################################################################
26 # Application configuration defaults.
27 #################################################################
28 # application image
29 repository: nexus3.onap.org:10001
30 image: onap/sdc-backend:1.6.7
31 backendInitImage: onap/sdc-backend-init:1.6.7
32 pullPolicy: Always
33
34 # flag to enable debugging - application support required
35 debugEnabled: false
36
37 config:
38   javaOptions: "-Xmx1536m -Xms1536m"
39   cassandraSslEnabled: "false"
40
41 # default number of instances
42 replicaCount: 1
43
44 nodeSelector: {}
45
46 affinity: {}
47
48 # probe configuration parameters
49 liveness:
50   initialDelaySeconds: 120
51   periodSeconds: 10
52   timeoutSeconds: 5
53   # necessary to disable liveness probe when setting breakpoints
54   # in debugger so K8s doesn't restart unresponsive container
55   port: api
56   enabled: true
57
58 readiness:
59   initialDelaySeconds: 60
60   periodSeconds: 10
61   timeoutSeconds: 5
62
63 service:
64   type: NodePort
65   name: sdc-be
66   both_tls_and_plain: true
67   msb:
68     - port: 8080
69       url: "/sdc/v1"
70       version: "v1"
71       protocol: "REST"
72       visualRange: "1"
73       serviceName: sdc
74     - port: 8080
75       url: "/sdc/v1"
76       version: "v1"
77       protocol: "REST"
78       visualRange: "1"
79       serviceName: sdc-deprecated
80   ports:
81     - name: api
82       port: 8443
83       plain_port: 8080
84       port_protocol: http
85       nodePort: '04'
86
87 ingress:
88   enabled: false
89   service:
90     - baseaddr: "sdc.api.be"
91       name: "sdc-be"
92       port: 8443
93   config:
94     ssl: "redirect"
95
96
97 # Resource Limit flavor -By Default using small
98 flavor: small
99 # Segregation for Different environment (Small and Large)
100 resources:
101   small:
102     limits:
103       cpu: 1
104       memory: 4Gi
105     requests:
106       cpu: 10m
107       memory: 1Gi
108   large:
109     limits:
110       cpu: 2
111       memory: 8Gi
112     requests:
113       cpu: 20m
114       memory: 2Gi
115   unlimited: {}