a818435a0305b2186832965f6bd38a0ca4c15e23
[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   readinessRepository: oomk8s
26   readinessImage: readiness-check:2.0.0
27   loggingRepository: docker.elastic.co
28   loggingImage: beats/filebeat:5.5.0
29
30 service:
31   name: dcae-healthcheck
32   internalPort: 8080
33   externalPort: 80
34   type: ClusterIP
35
36 # probe configuration parameters
37 liveness:
38   initialDelaySeconds: 10
39   periodSeconds: 10
40   # necessary to disable liveness probe when setting breakpoints
41   # in debugger so K8s doesn't restart unresponsive container
42   enabled: true
43
44 readiness:
45   initialDelaySeconds: 10
46   periodSeconds: 10
47 # application image
48 repository: nexus3.onap.org:10001
49 image: onap/org.onap.dcaegen2.deployments.healthcheck-container:2.1.0
50
51 # Resource Limit flavor -By Default using small
52 flavor: small
53 # Segregation for Different environment (Small and Large)
54 resources:
55   small:
56     limits:
57       cpu: 2
58       memory: 2Gi
59     requests:
60       cpu: 1
61       memory: 1Gi
62   large:
63     limits:
64       cpu: 4
65       memory: 4Gi
66     requests:
67       cpu: 2
68       memory: 2Gi
69   unlimited: {}
70 # Kubernetes namespace for components deployed via Cloudify manager
71 # If empty, use the common namespace
72 # dcae_ns: "onap"
73