blob: a818435a0305b2186832965f6bd38a0ca4c15e23 [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
Jack Lucasb92fe602018-04-20 18:51:34 +000025 readinessRepository: oomk8s
Gary Wubf4b4d82018-05-11 13:26:30 -070026 readinessImage: readiness-check:2.0.0
Jack Lucasb92fe602018-04-20 18:51:34 +000027 loggingRepository: docker.elastic.co
28 loggingImage: beats/filebeat:5.5.0
Mandeep Khinda60d36d42018-09-24 15:15:48 +000029
Jack Lucasb92fe602018-04-20 18:51:34 +000030service:
31 name: dcae-healthcheck
Vijay Venkatesh Kumarecd341e2020-02-27 04:05:57 +000032 internalPort: 8080
Jack Lucasb92fe602018-04-20 18:51:34 +000033 externalPort: 80
34 type: ClusterIP
Mandeep Khinda60d36d42018-09-24 15:15:48 +000035
Jack Lucasb92fe602018-04-20 18:51:34 +000036# probe configuration parameters
37liveness:
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
44readiness:
45 initialDelaySeconds: 10
46 periodSeconds: 10
47# application image
48repository: nexus3.onap.org:10001
Grzegorz-Lis10f55502020-08-19 10:25:39 +020049image: onap/org.onap.dcaegen2.deployments.healthcheck-container:2.1.0
Jack Lucasb92fe602018-04-20 18:51:34 +000050
vaibhav_16decdb582fa2018-09-20 12:32:47 +000051# Resource Limit flavor -By Default using small
52flavor: small
53# Segregation for Different environment (Small and Large)
54resources:
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: {}
Jack Lucasb92fe602018-04-20 18:51:34 +000070# Kubernetes namespace for components deployed via Cloudify manager
71# If empty, use the common namespace
Lusheng Ji98f947e2018-04-30 12:03:37 -040072# dcae_ns: "onap"
Jack Lucasb92fe602018-04-20 18:51:34 +000073