blob: c36362666638b2b23daf3ff6cfe61fc6b7f21b9f [file] [log] [blame]
Jack Lucas6fae7632019-01-25 11:46:00 -05001#============LICENSE_START========================================================
2# ================================================================================
vv770d97b84ea2020-08-17 22:30:24 +00003# Copyright (c) 2019-2020 AT&T Intellectual Property. All rights reserved.
Jack Lucas6fae7632019-01-25 11:46:00 -05004# ================================================================================
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 Lucasc70bc7e2019-09-23 09:02:31 -040023 tlsImage: onap/org.onap.dcaegen2.deployments.tls-init-container:2.1.0
Jack Lucas6fae7632019-01-25 11:46:00 -050024
25config:
26 logstashServiceName: log-ls
27 logstashPort: 5044
28 address:
29 # Addresses of ONAP components
30 message_router: message-router
31 sdc: sdc-be
32#################################################################
33# Application configuration defaults.
34#################################################################
35# application image
vv770d97b84ea2020-08-17 22:30:24 +000036image: onap/org.onap.dcaegen2.platform.servicechange-handler:1.4.0
Jack Lucas6fae7632019-01-25 11:46:00 -050037
38pullPolicy: Always
39
40# configuration for accessing SDC
41sdc:
42 user: "dcae"
43 password: !!str Kp8bJ4SXszM0WXlhak3eHlcse2gAw84vaoGGmJvUy2U
44 environmentName: "AUTO"
45 useHttps: false
46
47# configuration for accessing DMaaP
48dmaap:
49 useHttps: false
50
51# probe configuration parameters
52liveness:
53 initialDelaySeconds: 30
54 periodSeconds: 30
55 script: /opt/health.sh
56 # necessary to disable liveness probe when setting breakpoints
57 # in debugger so K8s doesn't restart unresponsive container
58 # liveness not desirable for Cloudify Manager container
59 enabled: false
60
61readiness:
62 initialDelaySeconds: 30
63 periodSeconds: 30
64 script: /opt/health.sh
65
66
67# Resource Limit flavor -By Default using small
68flavor: small
69# Segregation for Different environment (Small and Large)
70resources:
71 small:
72 limits:
73 cpu: 2
74 memory: 2Gi
75 requests:
76 cpu: 1
77 memory: 1Gi
78 large:
79 limits:
80 cpu: 4
81 memory: 4Gi
82 requests:
83 cpu: 2
84 memory: 2Gi
85 unlimited: {}
86# Kubernetes namespace for components deployed via Cloudify manager
87# If empty, use the common namespace
vv770d97b84ea2020-08-17 22:30:24 +000088# dcae_ns: "dcae"