blob: 356149c0ddd11bd97b91b94409cb8056adfb7f27 [file] [log] [blame]
Jack Lucas8c3463e2020-06-12 18:36:55 -04001#============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#################################################################
22global:
23 nodePortPrefix: 302
Jack Lucas8c3463e2020-06-12 18:36:55 -040024
25service:
26 name: dcaemod-healthcheck
27 type: ClusterIP
28 ports:
29 - name: http
30 port: 8080
31
32# probe configuration parameters
33liveness:
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
40readiness:
41 initialDelaySeconds: 10
42 periodSeconds: 10
43# application image
Jack Lucas8c3463e2020-06-12 18:36:55 -040044image: onap/org.onap.dcaegen2.deployments.healthcheck-container:2.0.0
45
46# Resource Limit flavor -By Default using small
47flavor: small
48# Segregation for Different environment (Small and Large)
49resources:
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