blob: 1918a8fea758833a61c379441b992e87d4342846 [file] [log] [blame]
BorislavGe904ab22018-04-03 16:55:55 +03001# Copyright © 2018 Amdocs, Bell Canada
Jack Lucasecc9f602019-03-19 11:38:42 -04002# Modifications Copyright © 2018-2019 AT&T
Schmalzried, Terry (ts862m)12db7892020-08-21 20:42:33 -04003# Modifications Copyright © 2020 Samsung Electronics
vaibhav_16dece04b2fe2018-03-22 09:07:12 +00004#
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
BorislavGe904ab22018-04-03 16:55:55 +030017#################################################################
18# Global configuration defaults.
19#################################################################
20global:
21 nodePortPrefix: 302
Jack Lucasecc9f602019-03-19 11:38:42 -040022 tlsRepository: nexus3.onap.org:10001
Jack Lucasc6861312020-03-03 15:57:59 -050023 tlsImage: onap/org.onap.dcaegen2.deployments.tls-init-container:2.1.0
Jack Lucasecc9f602019-03-19 11:38:42 -040024 consulLoaderRepository: nexus3.onap.org:10001
Vijay Venkatesh Kumar6ef010c2019-05-01 18:41:35 +000025 consulLoaderImage: onap/org.onap.dcaegen2.deployments.consul-loader-container:1.0.0
Sylvain Desbureauxcfb7ff92020-05-06 17:40:20 +020026 busyboxRepository: docker.io
27 busyboxImage: library/busybox:1.30
Jack Lucas8c3463e2020-06-12 18:36:55 -040028
Schmalzried, Terry (ts862m)12db7892020-08-21 20:42:33 -040029#################################################################
30# Secrets metaconfig
31#################################################################
32secrets:
33- name: &cmPassSecretName '{{ include "common.release" . }}-dcaegen2-cm-pass'
34 type: password
35 externalSecret: '{{ tpl (default "" .Values.config.cloudifyManagerPasswordExternalSecret) . }}'
36 password: '{{ .Values.config.cloudifyManagerPassword }}'
37
38config: {}
39
40# To work around DCAEGEN2-2450, set password strength to "basic"
41# to ensure password contains only alphanumerics
42passwordStrengthOverride: basic
43
vv770d97b84ea2020-08-17 22:30:24 +000044# Enable all DCAE components by default
Jack Lucas8c3463e2020-06-12 18:36:55 -040045dcae-bootstrap:
46 enabled: true
Schmalzried, Terry (ts862m)12db7892020-08-21 20:42:33 -040047 config:
48 cloudifyManagerPasswordExternalSecret: *cmPassSecretName
Jack Lucas8c3463e2020-06-12 18:36:55 -040049dcae-cloudify-manager:
50 enabled: true
Schmalzried, Terry (ts862m)12db7892020-08-21 20:42:33 -040051 config:
52 cloudifyManagerPasswordExternalSecret: *cmPassSecretName
Jack Lucas8c3463e2020-06-12 18:36:55 -040053dcae-config-binding-service:
54 enabled: true
55dcae-dashboard:
56 enabled: true
Schmalzried, Terry (ts862m)12db7892020-08-21 20:42:33 -040057 config:
58 cloudifyManagerPasswordExternalSecret: *cmPassSecretName
Jack Lucas8c3463e2020-06-12 18:36:55 -040059dcae-deployment-handler:
60 enabled: true
Schmalzried, Terry (ts862m)12db7892020-08-21 20:42:33 -040061 config:
62 cloudifyManagerPasswordExternalSecret: *cmPassSecretName
Jack Lucas8c3463e2020-06-12 18:36:55 -040063dcae-healthcheck:
64 enabled: true
65dcae-inventory-api:
66 enabled: true
67dcae-policy-handler:
68 enabled: true
Schmalzried, Terry (ts862m)12db7892020-08-21 20:42:33 -040069 config:
70 cloudifyManagerPasswordExternalSecret: *cmPassSecretName
Jack Lucas8c3463e2020-06-12 18:36:55 -040071dcae-servicechange-handler:
vv770d97b84ea2020-08-17 22:30:24 +000072 enabled: true