blob: 0d3082819f67206371d3ee8d6ecc14ef1c3a8a42 [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
Jack Lucas0108b522019-03-19 11:38:42 -040023 nodePortPrefixExt: 304
Sylvain Desbureaux1694e1d2020-08-21 09:58:25 +020024 readinessImage: onap/oom/readiness:3.0.1
Jack Lucas6fae7632019-01-25 11:46:00 -050025 loggingRepository: docker.elastic.co
26 loggingImage: beats/filebeat:5.5.0
Vijay Venkatesh Kumara4535c92019-08-02 01:45:23 +000027 tlsRepository: nexus3.onap.org:10001
Jack Lucasc70bc7e2019-09-23 09:02:31 -040028 tlsImage: onap/org.onap.dcaegen2.deployments.tls-init-container:2.1.0
Jack Lucas6fae7632019-01-25 11:46:00 -050029 repositoryCred:
30 user: docker
31 password: docker
32
33config:
34 logstashServiceName: log-ls
35 logstashPort: 5044
36 # Addresses of other ONAP entities
37 address:
38 consul:
39 host: consul-server
40 port: 8500
41
42#################################################################
43# Application configuration defaults.
44#################################################################
45# application image
46repository: nexus3.onap.org:10001
Jack Lucas128c0ad2019-09-04 15:44:33 -040047image: onap/org.onap.dcaegen2.platform.configbinding:2.5.2
Jack Lucas6fae7632019-01-25 11:46:00 -050048pullPolicy: Always
49
50# probe configuration parameters
51liveness:
52 initialDelaySeconds: 10
53 periodSeconds: 10
54 # necessary to disable liveness probe when setting breakpoints
55 # in debugger so K8s doesn't restart unresponsive container
56 # liveness not desirable for Cloudify Manager container
57 enabled: false
58
59readiness:
60 initialDelaySeconds: 10
61 periodSeconds: 10
62 path: /healthcheck
63
64service:
Jack Lucas4e61b3e2020-03-09 12:53:06 -040065 type: ClusterIP
Jack Lucas6fae7632019-01-25 11:46:00 -050066 name: config-binding-service
Vijay Venkatesh Kumara4535c92019-08-02 01:45:23 +000067 # TLS service
68 secure:
69 enabled: true
70 externalPort: 10443
71 internalPort: 10443
72 nodePort: 14
73 # Non-TLS service
74 insecure:
75 enabled: true
76 externalPort: 10000
77 internalPort: 10000
78 nodePort: 15
Jack Lucas6fae7632019-01-25 11:46:00 -050079
80# Resource Limit flavor -By Default using small
81flavor: small
82# Segregation for Different environment (Small and Large)
83resources:
84 small:
85 limits:
86 cpu: 2
87 memory: 2Gi
88 requests:
89 cpu: 1
90 memory: 1Gi
91 large:
92 limits:
93 cpu: 4
94 memory: 4Gi
95 requests:
96 cpu: 2
97 memory: 2Gi
98 unlimited: {}
99# Kubernetes namespace for components deployed via Cloudify manager
100# If empty, use the common namespace
101# dcae_ns: "dcae"