blob: d25889e0280a4deae1376518e6e463bfa10e77e4 [file] [log] [blame]
Jack Lucasb92fe602018-04-20 18:51:34 +00001#============LICENSE_START========================================================
2#=================================================================================
3# Copyright (c) 2018 AT&T Intellectual Property. All rights reserved.
Durgpal7ad40692018-08-03 07:28:36 +00004# Modifications Copyright © 2018 Amdocs, Bell Canada
Grzegorz-Lis10f55502020-08-19 10:25:39 +02005# Modifications Copyright © 2020 Nokia
Jack Lucasb92fe602018-04-20 18:51:34 +00006# ================================================================================
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#################################################################
23global:
24 nodePortPrefix: 302
Sylvain Desbureaux1694e1d2020-08-21 09:58:25 +020025 readinessImage: onap/oom/readiness:3.0.1
Jack Lucasb92fe602018-04-20 18:51:34 +000026 loggingRepository: docker.elastic.co
27 loggingImage: beats/filebeat:5.5.0
Mandeep Khinda60d36d42018-09-24 15:15:48 +000028
Jack Lucasb92fe602018-04-20 18:51:34 +000029service:
30 name: dcae-healthcheck
Vijay Venkatesh Kumarecd341e2020-02-27 04:05:57 +000031 internalPort: 8080
Jack Lucasb92fe602018-04-20 18:51:34 +000032 externalPort: 80
33 type: ClusterIP
Mandeep Khinda60d36d42018-09-24 15:15:48 +000034
Jack Lucasb92fe602018-04-20 18:51:34 +000035# probe configuration parameters
36liveness:
37 initialDelaySeconds: 10
38 periodSeconds: 10
39 # necessary to disable liveness probe when setting breakpoints
40 # in debugger so K8s doesn't restart unresponsive container
41 enabled: true
42
43readiness:
44 initialDelaySeconds: 10
45 periodSeconds: 10
46# application image
47repository: nexus3.onap.org:10001
Grzegorz-Lis10f55502020-08-19 10:25:39 +020048image: onap/org.onap.dcaegen2.deployments.healthcheck-container:2.1.0
Jack Lucasb92fe602018-04-20 18:51:34 +000049
vaibhav_16decdb582fa2018-09-20 12:32:47 +000050# Resource Limit flavor -By Default using small
51flavor: small
52# Segregation for Different environment (Small and Large)
53resources:
54 small:
55 limits:
56 cpu: 2
57 memory: 2Gi
58 requests:
59 cpu: 1
60 memory: 1Gi
61 large:
62 limits:
63 cpu: 4
64 memory: 4Gi
65 requests:
66 cpu: 2
67 memory: 2Gi
68 unlimited: {}
Jack Lucasb92fe602018-04-20 18:51:34 +000069# Kubernetes namespace for components deployed via Cloudify manager
70# If empty, use the common namespace
Lusheng Ji98f947e2018-04-30 12:03:37 -040071# dcae_ns: "onap"
Jack Lucasb92fe602018-04-20 18:51:34 +000072