blob: f6da1ef06c09a607f1d4e36d434eee1f6f78a9a4 [file] [log] [blame]
Jack Lucas6fae7632019-01-25 11:46:00 -05001#============LICENSE_START========================================================
2# ================================================================================
3# Copyright (c) 2019 AT&T Intellectual Property. All rights reserved.
4# ================================================================================
5# Licensed under the Apache License, Version 2.0 (the "License");
6# you may not use this file except in compliance with the License.
7# You may obtain a copy of the License at
8#
9# http://www.apache.org/licenses/LICENSE-2.0
10#
11# Unless required by applicable law or agreed to in writing, software
12# distributed under the License is distributed on an "AS IS" BASIS,
13# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14# See the License for the specific language governing permissions and
15# limitations under the License.
16# ============LICENSE_END=========================================================
17
18#################################################################
19# Global configuration defaults.
20#################################################################
21global:
22 nodePortPrefix: 302
23 readinessRepository: oomk8s
24 readinessImage: readiness-check:2.0.0
25 loggingRepository: docker.elastic.co
26 loggingImage: beats/filebeat:5.5.0
27 repositoryCred:
28 user: docker
29 password: docker
30
31config:
32 logstashServiceName: log-ls
33 logstashPort: 5044
34 # Addresses of other ONAP entities
35 address:
36 consul:
37 host: consul-server
38 port: 8500
39
40#################################################################
41# Application configuration defaults.
42#################################################################
43# application image
44repository: nexus3.onap.org:10001
45image: onap/org.onap.dcaegen2.platform.configbinding.app-app:2.2.3
46pullPolicy: Always
47
48# probe configuration parameters
49liveness:
50 initialDelaySeconds: 10
51 periodSeconds: 10
52 # necessary to disable liveness probe when setting breakpoints
53 # in debugger so K8s doesn't restart unresponsive container
54 # liveness not desirable for Cloudify Manager container
55 enabled: false
56
57readiness:
58 initialDelaySeconds: 10
59 periodSeconds: 10
60 path: /healthcheck
61
62service:
63 type: ClusterIP
64 name: config-binding-service
65 externalPort: 10000
66 internalPort: 10000
67
68# Resource Limit flavor -By Default using small
69flavor: small
70# Segregation for Different environment (Small and Large)
71resources:
72 small:
73 limits:
74 cpu: 2
75 memory: 2Gi
76 requests:
77 cpu: 1
78 memory: 1Gi
79 large:
80 limits:
81 cpu: 4
82 memory: 4Gi
83 requests:
84 cpu: 2
85 memory: 2Gi
86 unlimited: {}
87# Kubernetes namespace for components deployed via Cloudify manager
88# If empty, use the common namespace
89# dcae_ns: "dcae"