blob: 3ab578f7ec4f2799deea57e2540d1f3727720971 [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.
4# 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 Lucasb92fe602018-04-20 18:51:34 +000024 readinessRepository: oomk8s
Gary Wubf4b4d82018-05-11 13:26:30 -070025 readinessImage: readiness-check:2.0.0
Jack Lucasb92fe602018-04-20 18:51:34 +000026 loggingRepository: docker.elastic.co
27 loggingImage: beats/filebeat:5.5.0
28
29service:
30 name: dcae-healthcheck
31 internalPort: 80
32 externalPort: 80
33 type: ClusterIP
34
35# 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
48image: onap/org.onap.dcaegen2.deployments.healthcheck-container:1.0.0
49
50# Kubernetes namespace for components deployed via Cloudify manager
51# If empty, use the common namespace
52dcae_ns: "dcae"
53