blob: 5fcd916989591fa9a617d416b8e344a4eb35c51e [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
Krzysztof Opasiak9cb82032020-05-05 12:04:31 +020031 envsubstImage: dibi/envsubst
32
33secrets:
34 - uid: pg-root-pass
35 name: &pgRootPassSecretName '{{ include "common.release" . }}-dcae-bootstrap-pg-root-pass'
36 type: password
37 externalSecret: '{{ ternary "" (tpl (default "" .Values.postgres.config.pgRootPasswordExternalSecret) .) (hasSuffix "dcae-bootstrap-pg-root-pass" .Values.postgres.config.pgRootPasswordExternalSecret) }}'
38 password: '{{ .Values.postgres.config.pgRootpassword }}'
39 policy: generate
BorislavG57f74d32018-04-12 11:08:39 +030040
41config:
42 logstashServiceName: log-ls
43 logstashPort: 5044
44 # Addresses of ONAP components
45 address:
46 consul:
47 host: consul-server
48 port: 8500
Vijay Venkatesh Kumarda5841f2019-04-23 22:14:18 +000049 consul_ui: consul-server-ui
Vijay Venkatesh Kumara4535c92019-08-02 01:45:23 +000050 cm:
51 host: dcae-cloudify-manager
52 port: 443
53 proto: https
54 #Temporary assignment to avoid conflict
55 #To be removed after bootstrap changes done to remove dashboard
Vijay Venkatesh Kumar756171e2019-04-05 19:06:16 +000056 dashboard:
Vijay Venkatesh Kumara4535c92019-08-02 01:45:23 +000057 port: 30473
58 portSecure: 30474
dgermaincb6fd182018-11-07 15:51:14 -050059 datafile_collector:
60 port: 30223
61 portSecure: 30262
Conor Warddfc3de22018-09-18 18:14:23 +000062 dmaap_dr_prov: dmaap-dr-prov
BorislavG57f74d32018-04-12 11:08:39 +030063 message_router: message-router
64 msb_discovery: msb-discovery
Jack Lucasa3db7292018-10-15 17:46:23 -040065 msb_iag: msb-iag
BorislavG57f74d32018-04-12 11:08:39 +030066 policy_pdp: pdp
67 sdc: sdc-be
Vijay Venkatesh Kumar756171e2019-04-05 19:06:16 +000068 snmptrap:
69 port: 30470
dgermaincb6fd182018-11-07 15:51:14 -050070 ves:
71 port: 30235
Vijay Venkatesh Kumar756171e2019-04-05 19:06:16 +000072 portSecure: 30417
Jack Lucasd801f792018-04-27 22:20:33 +000073 # redisCaching is a string not a boolean!
74 redisCaching: "false"
75
76# postgres values--overriding defaults in the postgres subchart
77postgres:
78 nameOverride: dcae-db
79 service:
80 name: dcae-postgres
81 name2: dcae-pg-primary
82 name3: dcae-pg-replica
Vijay Venkatesh Kumar756171e2019-04-05 19:06:16 +000083 suffix: svc.cluster.local
Jack Lucasd801f792018-04-27 22:20:33 +000084 container:
85 name:
86 primary: dcae-pg-primary
87 replica: dcae-pg-replica
88 config:
Krzysztof Opasiak9cb82032020-05-05 12:04:31 +020089 pgRootPasswordExternalSecret: *pgRootPassSecretName
BorislavG9b65f832018-05-15 15:46:48 +030090 persistence:
91 mountSubPath: dcae/data
92 mountInitPath: dcae
BorislavG57f74d32018-04-12 11:08:39 +030093
Vijay Venkatesh Kumarecd341e2020-02-27 04:05:57 +000094mongo:
95 nameOverride: dcae-mongo
96 config:
97 dbName: dcaecommondb
98 service:
99 name: dcae-mongohost
100 internalPort: 27017
101 nfsprovisionerPrefix: dcaemongo
102 sdnctlPrefix: tcagen2
103 persistence:
104 mountSubPath: dcae/mongo/data
105 enabled: true
106 disableNfsProvisioner: true
107
BorislavG57f74d32018-04-12 11:08:39 +0300108# application image
109repository: nexus3.onap.org:10001
Vijay Venkatesh Kumar9bca3e62020-04-09 20:25:22 +0000110image: onap/org.onap.dcaegen2.deployments.k8s-bootstrap-container:1.12.5
Jack Lucas0108b522019-03-19 11:38:42 -0400111default_k8s_location: central
BorislavG57f74d32018-04-12 11:08:39 +0300112
113# DCAE component images to be deployed via Cloudify Manager
114# Use to override default setting in blueprints
115componentImages:
GuangrongFu350de082019-10-17 08:35:29 +0800116 holmes_rules: onap/holmes/rule-management:1.2.7
117 holmes_engine: onap/holmes/engine-management:1.2.6
Jack Lucasc70bc7e2019-09-23 09:02:31 -0400118 tca: onap/org.onap.dcaegen2.deployments.tca-cdap-container:1.2.2
Vijay Venkatesh Kumar306ca0e2020-03-24 21:25:52 +0000119 tcagen2: onap/org.onap.dcaegen2.analytics.tca-gen2.dcae-analytics-tca-web:1.0.1
Pawel5781a992020-03-24 15:47:49 +0100120 ves: onap/org.onap.dcaegen2.collectors.ves.vescollector:1.5.4
Vijay Venkatesh Kumar6ef010c2019-05-01 18:41:35 +0000121 snmptrap: onap/org.onap.dcaegen2.collectors.snmptrap:1.4.0
Jack Lucas00efe372020-03-11 13:48:20 -0400122 prh: onap/org.onap.dcaegen2.services.prh.prh-app-server:1.5.2
pwielebs1502a102020-03-02 16:40:48 +0100123 hv_ves: onap/org.onap.dcaegen2.collectors.hv-ves.hv-collector-main:1.4.0
BorislavG57f74d32018-04-12 11:08:39 +0300124
vaibhav_16decdb582fa2018-09-20 12:32:47 +0000125# Resource Limit flavor -By Default using small
126flavor: small
127# Segregation for Different environment (Small and Large)
128resources:
129 small:
130 limits:
131 cpu: 2
132 memory: 2Gi
133 requests:
134 cpu: 1
135 memory: 1Gi
136 large:
137 limits:
138 cpu: 4
139 memory: 4Gi
140 requests:
141 cpu: 2
142 memory: 2Gi
143 unlimited: {}
BorislavG57f74d32018-04-12 11:08:39 +0300144# Kubernetes namespace for components deployed via Cloudify manager
145# If empty, use the common namespace
Lusheng Ji98f947e2018-04-30 12:03:37 -0400146# dcae_ns: "onap"