blob: 26067e02308637009ade2000b1a7373a880f72b7 [file] [log] [blame]
BorislavG57f74d32018-04-12 11:08:39 +03001#============LICENSE_START========================================================
2#=================================================================================
3# Copyright (c) 2018 AT&T Intellectual Property. All rights reserved.
Durgpal7ad40692018-08-03 07:28:36 +00004# Modifications Copyright © 2018 Amdocs, Bell Canada
BorislavG57f74d32018-04-12 11:08:39 +03005# ================================================================================
6# Licensed under the Apache License, Version 2.0 (the "License");
7# you may not use this file except in compliance with the License.
8# You may obtain a copy of the License at
9#
10# http://www.apache.org/licenses/LICENSE-2.0
11#
12# Unless required by applicable law or agreed to in writing, software
13# distributed under the License is distributed on an "AS IS" BASIS,
14# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15# See the License for the specific language governing permissions and
16# limitations under the License.
17# ============LICENSE_END=========================================================
18
19#################################################################
20# Global configuration defaults.
21#################################################################
22global:
23 nodePortPrefix: 302
BorislavG57f74d32018-04-12 11:08:39 +030024 readinessRepository: oomk8s
Gary Wubf4b4d82018-05-11 13:26:30 -070025 readinessImage: readiness-check:2.0.0
BorislavG57f74d32018-04-12 11:08:39 +030026 loggingRepository: docker.elastic.co
27 loggingImage: beats/filebeat:5.5.0
28
29config:
30 logstashServiceName: log-ls
31 logstashPort: 5044
32 # Addresses of ONAP components
33 address:
34 consul:
35 host: consul-server
36 port: 8500
37 cm: dcae-cloudify-manager
dgermaincb6fd182018-11-07 15:51:14 -050038 datafile_collector:
39 port: 30223
40 portSecure: 30262
Conor Warddfc3de22018-09-18 18:14:23 +000041 dmaap_dr_prov: dmaap-dr-prov
BorislavG57f74d32018-04-12 11:08:39 +030042 message_router: message-router
43 msb_discovery: msb-discovery
Jack Lucasa3db7292018-10-15 17:46:23 -040044 msb_iag: msb-iag
BorislavG57f74d32018-04-12 11:08:39 +030045 policy_pdp: pdp
46 sdc: sdc-be
dgermaincb6fd182018-11-07 15:51:14 -050047 ves:
48 port: 30235
Jack Lucasd801f792018-04-27 22:20:33 +000049 # redisCaching is a string not a boolean!
50 redisCaching: "false"
51
52# postgres values--overriding defaults in the postgres subchart
53postgres:
54 nameOverride: dcae-db
55 service:
56 name: dcae-postgres
57 name2: dcae-pg-primary
58 name3: dcae-pg-replica
59 container:
60 name:
61 primary: dcae-pg-primary
62 replica: dcae-pg-replica
63 config:
64 pgPrimaryPassword: onapdemodb
65 pgRootPassword: onapdemodb
BorislavG9b65f832018-05-15 15:46:48 +030066 persistence:
67 mountSubPath: dcae/data
68 mountInitPath: dcae
jasmineWenfb2b4f32018-10-11 00:23:58 +000069 pgpool:
70 nameOverride: dcae-pgpool
71 service:
72 name: dcae-pgpool
73 credentials:
74 pgpassword: onapdemodb
75 container:
76 name:
77 primary: dcae-pgpool-primary
78 replica: dcae-pgpool-replica
BorislavG57f74d32018-04-12 11:08:39 +030079
80# application image
81repository: nexus3.onap.org:10001
Jack Lucas083af012018-10-31 09:35:15 -040082image: onap/org.onap.dcaegen2.deployments.k8s-bootstrap-container:1.4.5
BorislavG57f74d32018-04-12 11:08:39 +030083
84# DCAE component images to be deployed via Cloudify Manager
85# Use to override default setting in blueprints
86componentImages:
vagrant01cb1ab2018-09-16 06:36:46 +000087 config_binding_service: onap/org.onap.dcaegen2.platform.configbinding.app-app:2.2.3
Chengkai Yan7dc4d162018-12-10 05:20:02 +010088 datafile_collector: onap/org.onap.dcaegen2.collectors.datafile.datafile-app-server:1.1.1
Alex Shatov473e1532018-12-12 11:06:56 -050089 deployment_handler: onap/org.onap.dcaegen2.platform.deployment-handler:3.1.0
Gary Wue2449eb2018-11-07 09:29:24 -080090 holmes_rules: onap/holmes/rule-management:1.2.3
91 holmes_engine: onap/holmes/engine-management:1.2.2
Alexis de Talhouët697e9962018-09-19 11:58:29 -040092 inventory: onap/org.onap.dcaegen2.platform.inventory-api:3.0.4
Alex Shatov473e1532018-12-12 11:06:56 -050093 policy_handler: onap/org.onap.dcaegen2.platform.policy-handler:4.5.0
Jack Lucaseea60d52018-08-23 21:31:42 +000094 service_change_handler: onap/org.onap.dcaegen2.platform.servicechange-handler:1.1.5
Gary Wu46621662018-05-30 14:30:47 -070095 tca: onap/org.onap.dcaegen2.deployments.tca-cdap-container:1.1.0
vagrant0707cd22018-08-07 15:25:54 +000096 ves: onap/org.onap.dcaegen2.collectors.ves.vescollector:1.3.1
vagrant01cb1ab2018-09-16 06:36:46 +000097 snmptrap: onap/org.onap.dcaegen2.collectors.snmptrap:1.4.0
Marcin Migdal709e5a22018-12-19 13:19:44 +010098 prh: onap/org.onap.dcaegen2.services.prh.prh-app-server:1.2.0-SNAPSHOT
Vijay Venkatesh Kumar97b0d842018-12-10 03:39:00 +000099 hv_ves: onap/org.onap.dcaegen2.collectors.hv-ves.hv-collector-main:1.1.0-SNAPSHOT
BorislavG57f74d32018-04-12 11:08:39 +0300100
vaibhav_16decdb582fa2018-09-20 12:32:47 +0000101# Resource Limit flavor -By Default using small
102flavor: small
103# Segregation for Different environment (Small and Large)
104resources:
105 small:
106 limits:
107 cpu: 2
108 memory: 2Gi
109 requests:
110 cpu: 1
111 memory: 1Gi
112 large:
113 limits:
114 cpu: 4
115 memory: 4Gi
116 requests:
117 cpu: 2
118 memory: 2Gi
119 unlimited: {}
BorislavG57f74d32018-04-12 11:08:39 +0300120# Kubernetes namespace for components deployed via Cloudify manager
121# If empty, use the common namespace
Lusheng Ji98f947e2018-04-30 12:03:37 -0400122# dcae_ns: "onap"