[GENERAL] Use readiness container v3.0.1
[oom.git] / kubernetes / msb / charts / msb-discovery / values.yaml
1 # Copyright © 2018 Amdocs, Bell Canada , ZTE
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 # Global configuration defaults.
16 #################################################################
17 global:
18   nodePortPrefix: 302
19   readinessImage: onap/oom/readiness:3.0.1
20
21 #################################################################
22 # Application configuration defaults.
23 #################################################################
24 # application image
25 repository: nexus3.onap.org:10001
26 image: onap/msb/msb_discovery:1.2.6
27 pullPolicy: Always
28 istioSidecar: true
29
30 # application configuration
31 config: {}
32
33 # default number of instances
34 replicaCount: 1
35
36 nodeSelector: {}
37
38 affinity: {}
39
40 # probe configuration parameters
41 liveness:
42   initialDelaySeconds: 10
43   periodSeconds: 10
44   # necessary to disable liveness probe when setting breakpoints
45   # in debugger so K8s doesn't restart unresponsive container
46   enabled: true
47
48 readiness:
49   initialDelaySeconds: 10
50   periodSeconds: 10
51
52 service:
53   type: ClusterIP
54   name: msb-discovery
55   externalPort: 10081
56   internalPort: 10081
57   nodePort: 81
58
59 ingress:
60   enabled: false
61   service:
62     - baseaddr: "msb.api.discovery"
63       name: "msb-discovery"
64       port: 10081
65   config:
66     ssl: "none"
67
68 # Resource Limit flavor -By Default using small
69 flavor: small
70 # Segregation for Different environment (Small and Large)
71 resources:
72   small:
73     limits:
74       cpu: 400m
75       memory: 400Mi
76     requests:
77       cpu: 200m
78       memory: 200Mi
79   large:
80     limits:
81       cpu: 800m
82       memory: 800Mi
83     requests:
84       cpu: 400m
85       memory: 400Mi
86   unlimited: {}