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