blob: fae177ca385c21f50f90a7952041dd342c0edf60 [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
24 readinessRepository: oomk8s
25 readinessImage: readiness-check:2.0.0
26
27service:
28 name: dcaemod-healthcheck
29 type: ClusterIP
30 ports:
31 - name: http
32 port: 8080
33
34# probe configuration parameters
35liveness:
36 initialDelaySeconds: 10
37 periodSeconds: 10
38 # necessary to disable liveness probe when setting breakpoints
39 # in debugger so K8s doesn't restart unresponsive container
40 enabled: true
41
42readiness:
43 initialDelaySeconds: 10
44 periodSeconds: 10
45# application image
46repository: nexus3.onap.org:10001
47image: onap/org.onap.dcaegen2.deployments.healthcheck-container:2.0.0
48
49# Resource Limit flavor -By Default using small
50flavor: small
51# Segregation for Different environment (Small and Large)
52resources:
53 small:
54 limits:
55 cpu: 2
56 memory: 2Gi
57 requests:
58 cpu: 1
59 memory: 1Gi
60 large:
61 limits:
62 cpu: 4
63 memory: 4Gi
64 requests:
65 cpu: 2
66 memory: 2Gi
67 unlimited: {}
68
69