a08369476748a36e7299f77fb45166f21e15612d
[oom.git] / kubernetes / dcaegen2 / components / dcae-healthcheck / values.yaml
1 #============LICENSE_START========================================================
2 #=================================================================================
3 # Copyright (c) 2018 AT&T Intellectual Property. All rights reserved.
4 # Modifications Copyright © 2018 Amdocs, Bell Canada
5 # Modifications Copyright © 2020 Nokia
6 # ================================================================================
7 # Licensed under the Apache License, Version 2.0 (the "License");
8 # you may not use this file except in compliance with the License.
9 # You may obtain a copy of the License at
10 #
11 #     http://www.apache.org/licenses/LICENSE-2.0
12 #
13 # Unless required by applicable law or agreed to in writing, software
14 # distributed under the License is distributed on an "AS IS" BASIS,
15 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 # See the License for the specific language governing permissions and
17 # limitations under the License.
18 # ============LICENSE_END=========================================================
19
20 #################################################################
21 # Global configuration defaults.
22 #################################################################
23 global:
24   nodePortPrefix: 302
25
26 service:
27   name: dcae-healthcheck
28   internalPort: 8080
29   externalPort: 80
30   type: ClusterIP
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.1.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 # Kubernetes namespace for components deployed via Cloudify manager
66 # If empty, use the common namespace
67 # dcae_ns: "onap"
68