blob: cfdff5ad72ebaa7d9517aad28502e843b9a82ca8 [file] [log] [blame]
BorislavG57f74d32018-04-12 11:08:39 +03001#============LICENSE_START========================================================
2#=================================================================================
Jack Lucas332b5e72019-02-06 16:03:13 -05003# Copyright (c) 2018-2019 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
Vijay Venkatesh Kumar756171e2019-04-05 19:06:16 +000024 nodePortPrefixExt: 304
BorislavG57f74d32018-04-12 11:08:39 +030025 readinessRepository: oomk8s
Gary Wubf4b4d82018-05-11 13:26:30 -070026 readinessImage: readiness-check:2.0.0
BorislavG57f74d32018-04-12 11:08:39 +030027 loggingRepository: docker.elastic.co
28 loggingImage: beats/filebeat:5.5.0
Jack Lucas50fc0a32019-03-01 18:18:44 -050029 tlsRepository: nexus3.onap.org:10001
Jack Lucasc70bc7e2019-09-23 09:02:31 -040030 tlsImage: onap/org.onap.dcaegen2.deployments.tls-init-container:2.1.0
BorislavG57f74d32018-04-12 11:08:39 +030031
32config:
33 logstashServiceName: log-ls
34 logstashPort: 5044
35 # Addresses of ONAP components
36 address:
37 consul:
38 host: consul-server
39 port: 8500
Vijay Venkatesh Kumarda5841f2019-04-23 22:14:18 +000040 consul_ui: consul-server-ui
Vijay Venkatesh Kumara4535c92019-08-02 01:45:23 +000041 cm:
42 host: dcae-cloudify-manager
43 port: 443
44 proto: https
45 #Temporary assignment to avoid conflict
46 #To be removed after bootstrap changes done to remove dashboard
Vijay Venkatesh Kumar756171e2019-04-05 19:06:16 +000047 dashboard:
Vijay Venkatesh Kumara4535c92019-08-02 01:45:23 +000048 port: 30473
49 portSecure: 30474
dgermaincb6fd182018-11-07 15:51:14 -050050 datafile_collector:
51 port: 30223
52 portSecure: 30262
Conor Warddfc3de22018-09-18 18:14:23 +000053 dmaap_dr_prov: dmaap-dr-prov
BorislavG57f74d32018-04-12 11:08:39 +030054 message_router: message-router
55 msb_discovery: msb-discovery
Jack Lucasa3db7292018-10-15 17:46:23 -040056 msb_iag: msb-iag
BorislavG57f74d32018-04-12 11:08:39 +030057 policy_pdp: pdp
58 sdc: sdc-be
Vijay Venkatesh Kumar756171e2019-04-05 19:06:16 +000059 snmptrap:
60 port: 30470
dgermaincb6fd182018-11-07 15:51:14 -050061 ves:
62 port: 30235
Vijay Venkatesh Kumar756171e2019-04-05 19:06:16 +000063 portSecure: 30417
Jack Lucasd801f792018-04-27 22:20:33 +000064 # redisCaching is a string not a boolean!
65 redisCaching: "false"
66
67# postgres values--overriding defaults in the postgres subchart
68postgres:
69 nameOverride: dcae-db
70 service:
71 name: dcae-postgres
72 name2: dcae-pg-primary
73 name3: dcae-pg-replica
Vijay Venkatesh Kumar756171e2019-04-05 19:06:16 +000074 suffix: svc.cluster.local
Jack Lucasd801f792018-04-27 22:20:33 +000075 container:
76 name:
77 primary: dcae-pg-primary
78 replica: dcae-pg-replica
79 config:
80 pgPrimaryPassword: onapdemodb
81 pgRootPassword: onapdemodb
BorislavG9b65f832018-05-15 15:46:48 +030082 persistence:
83 mountSubPath: dcae/data
84 mountInitPath: dcae
jasmineWenfb2b4f32018-10-11 00:23:58 +000085 pgpool:
86 nameOverride: dcae-pgpool
87 service:
88 name: dcae-pgpool
89 credentials:
90 pgpassword: onapdemodb
91 container:
92 name:
93 primary: dcae-pgpool-primary
94 replica: dcae-pgpool-replica
BorislavG57f74d32018-04-12 11:08:39 +030095
Vijay Venkatesh Kumarecd341e2020-02-27 04:05:57 +000096mongo:
97 nameOverride: dcae-mongo
98 config:
99 dbName: dcaecommondb
100 service:
101 name: dcae-mongohost
102 internalPort: 27017
103 nfsprovisionerPrefix: dcaemongo
104 sdnctlPrefix: tcagen2
105 persistence:
106 mountSubPath: dcae/mongo/data
107 enabled: true
108 disableNfsProvisioner: true
109
BorislavG57f74d32018-04-12 11:08:39 +0300110# application image
111repository: nexus3.onap.org:10001
pwielebs1502a102020-03-02 16:40:48 +0100112image: onap/org.onap.dcaegen2.deployments.k8s-bootstrap-container:1.10.0
Jack Lucas0108b522019-03-19 11:38:42 -0400113default_k8s_location: central
BorislavG57f74d32018-04-12 11:08:39 +0300114
115# DCAE component images to be deployed via Cloudify Manager
116# Use to override default setting in blueprints
117componentImages:
GuangrongFu350de082019-10-17 08:35:29 +0800118 holmes_rules: onap/holmes/rule-management:1.2.7
119 holmes_engine: onap/holmes/engine-management:1.2.6
Jack Lucasc70bc7e2019-09-23 09:02:31 -0400120 tca: onap/org.onap.dcaegen2.deployments.tca-cdap-container:1.2.2
Vijay Venkatesh Kumarecd341e2020-02-27 04:05:57 +0000121 #placeholder until tca-gen2 release image is available
122 #tcagen2: onap/org.onap.dcaegen2.analytics.tca-gen2.dcae-analytics-tca-web:1.0.0
123 ves: onap/org.onap.dcaegen2.collectors.ves.vescollector:1.5.3
Vijay Venkatesh Kumar6ef010c2019-05-01 18:41:35 +0000124 snmptrap: onap/org.onap.dcaegen2.collectors.snmptrap:1.4.0
pwielebsb1b1b4b2020-01-29 12:35:14 +0100125 prh: onap/org.onap.dcaegen2.services.prh.prh-app-server:1.5.0
pwielebs1502a102020-03-02 16:40:48 +0100126 hv_ves: onap/org.onap.dcaegen2.collectors.hv-ves.hv-collector-main:1.4.0
BorislavG57f74d32018-04-12 11:08:39 +0300127
vaibhav_16decdb582fa2018-09-20 12:32:47 +0000128# Resource Limit flavor -By Default using small
129flavor: small
130# Segregation for Different environment (Small and Large)
131resources:
132 small:
133 limits:
134 cpu: 2
135 memory: 2Gi
136 requests:
137 cpu: 1
138 memory: 1Gi
139 large:
140 limits:
141 cpu: 4
142 memory: 4Gi
143 requests:
144 cpu: 2
145 memory: 2Gi
146 unlimited: {}
BorislavG57f74d32018-04-12 11:08:39 +0300147# Kubernetes namespace for components deployed via Cloudify manager
148# If empty, use the common namespace
Lusheng Ji98f947e2018-04-30 12:03:37 -0400149# dcae_ns: "onap"