blob: 0b88a65c69f1a6316e96019a85ad9e9797b83b54 [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
Vijay Venkatesh Kumara4535c92019-08-02 01:45:23 +000027 tlsRepository: nexus3.onap.org:10001
28 tlsImage: onap/org.onap.dcaegen2.deployments.tls-init-container:1.0.3
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 address:
37 # Addresses of ONAP components
38 message_router: message-router
39 sdc: sdc-be
40#################################################################
41# Application configuration defaults.
42#################################################################
43# application image
44repository: nexus3.onap.org:10001
Vijay Venkatesh Kumara4535c92019-08-02 01:45:23 +000045image: onap/org.onap.dcaegen2.platform.servicechange-handler:1.3.2
Jack Lucas6fae7632019-01-25 11:46:00 -050046
47pullPolicy: Always
48
49# configuration for accessing SDC
50sdc:
51 user: "dcae"
52 password: !!str Kp8bJ4SXszM0WXlhak3eHlcse2gAw84vaoGGmJvUy2U
53 environmentName: "AUTO"
54 useHttps: false
55
56# configuration for accessing DMaaP
57dmaap:
58 useHttps: false
59
60# probe configuration parameters
61liveness:
62 initialDelaySeconds: 30
63 periodSeconds: 30
64 script: /opt/health.sh
65 # necessary to disable liveness probe when setting breakpoints
66 # in debugger so K8s doesn't restart unresponsive container
67 # liveness not desirable for Cloudify Manager container
68 enabled: false
69
70readiness:
71 initialDelaySeconds: 30
72 periodSeconds: 30
73 script: /opt/health.sh
74
75
76# Resource Limit flavor -By Default using small
77flavor: small
78# Segregation for Different environment (Small and Large)
79resources:
80 small:
81 limits:
82 cpu: 2
83 memory: 2Gi
84 requests:
85 cpu: 1
86 memory: 1Gi
87 large:
88 limits:
89 cpu: 4
90 memory: 4Gi
91 requests:
92 cpu: 2
93 memory: 2Gi
94 unlimited: {}
95# Kubernetes namespace for components deployed via Cloudify manager
96# If empty, use the common namespace
97# dcae_ns: "dcae"