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