Merge "[DCAEMOD] Uses new tpls for repos / images"
[oom.git] / kubernetes / dcaemod / components / dcaemod-healthcheck / values.yaml
1 #============LICENSE_START========================================================
2 #=================================================================================
3 # Copyright (c) 2018-2020 AT&T Intellectual Property. All rights reserved.
4 # Modifications Copyright © 2018 Amdocs, Bell Canada
5 # ================================================================================
6 # Licensed under the Apache License, Version 2.0 (the "License");
7 # you may not use this file except in compliance with the License.
8 # You may obtain a copy of the License at
9 #
10 #     http://www.apache.org/licenses/LICENSE-2.0
11 #
12 # Unless required by applicable law or agreed to in writing, software
13 # distributed under the License is distributed on an "AS IS" BASIS,
14 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 # See the License for the specific language governing permissions and
16 # limitations under the License.
17 # ============LICENSE_END=========================================================
18
19 #################################################################
20 # Global configuration defaults.
21 #################################################################
22 global:
23   nodePortPrefix: 302
24
25 service:
26   name: dcaemod-healthcheck
27   type: ClusterIP
28   ports:
29   - name: http
30     port: 8080
31
32 # probe configuration parameters
33 liveness:
34   initialDelaySeconds: 10
35   periodSeconds: 10
36   # necessary to disable liveness probe when setting breakpoints
37   # in debugger so K8s doesn't restart unresponsive container
38   enabled: true
39
40 readiness:
41   initialDelaySeconds: 10
42   periodSeconds: 10
43 # application image
44 image: onap/org.onap.dcaegen2.deployments.healthcheck-container:2.0.0
45
46 # Resource Limit flavor -By Default using small
47 flavor: small
48 # Segregation for Different environment (Small and Large)
49 resources:
50   small:
51     limits:
52       cpu: 2
53       memory: 2Gi
54     requests:
55       cpu: 1
56       memory: 1Gi
57   large:
58     limits:
59       cpu: 4
60       memory: 4Gi
61     requests:
62       cpu: 2
63       memory: 2Gi
64   unlimited: {}
65
66