blob: aa6af35c5eab5a590e26a09bfa71cbc0f8f5d4bb [file] [log] [blame]
Jack Lucasd41dbdb2021-02-16 11:07:28 -05001#============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# Copyright (c) 2021 J. F. Lucas. All rights reserved.
7# ================================================================================
8# Licensed under the Apache License, Version 2.0 (the "License");
9# you may not use this file except in compliance with the License.
10# You may obtain a copy of the License at
11#
12# http://www.apache.org/licenses/LICENSE-2.0
13#
14# Unless required by applicable law or agreed to in writing, software
15# distributed under the License is distributed on an "AS IS" BASIS,
16# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17# See the License for the specific language governing permissions and
18# limitations under the License.
19# ============LICENSE_END=========================================================
20
21#################################################################
22# Global configuration defaults.
23#################################################################
24global:
25 nodePortPrefix: 302
26
27service:
28 type: ClusterIP
29 name: dcae-ms-healthcheck
30 ports:
31 - port: 8080
32 name: http
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
Jack Lucasea66ea72021-07-07 13:26:56 -040046image: onap/org.onap.dcaegen2.deployments.healthcheck-container:2.2.0
Jack Lucasd41dbdb2021-02-16 11:07:28 -050047
48# Resource Limit flavor -By Default using small
49flavor: small
50# Segregation for Different environment (Small and Large)
51resources:
52 small:
53 limits:
54 cpu: 2
55 memory: 2Gi
56 requests:
57 cpu: 1
58 memory: 1Gi
59 large:
60 limits:
61 cpu: 4
62 memory: 4Gi
63 requests:
64 cpu: 2
65 memory: 2Gi
66 unlimited: {}
67