blob: e15cd1080bc45bdd9240d7301be6ffa8de385fb9 [file] [log] [blame]
puthuparambil.adityab35e2de2021-07-23 13:57:22 +01001# Copyright (C) 2021 Bell Canada
puthuparambil.aditya7625e522021-01-22 22:01:50 +01002#
3# Licensed under the Apache License, Version 2.0 (the "License");
4# you may not use this file except in compliance with the License.
5# You may obtain a copy of the License at
6#
7# http://www.apache.org/licenses/LICENSE-2.0
8#
9# Unless required by applicable law or agreed to in writing, software
10# distributed under the License is distributed on an "AS IS" BASIS,
11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12# See the License for the specific language governing permissions and
13# limitations under the License.
14
15#################################################################
puthuparambil.aditya7625e522021-01-22 22:01:50 +010016# Global configuration defaults.
17#################################################################
shivasubedic615a892021-08-24 13:17:07 +010018secrets:
19 - uid: core-app-user-creds
20 name: &core-creds-secret '{{ include "common.release" . }}-cps-core-app-user-creds'
21 type: basicAuth
22 externalSecret: '{{ tpl (default "" .Values.config.coreUserExternalSecret) . }}'
23 login: '{{ .Values.config.coreUserName }}'
24 password: '{{ .Values.config.coreUserPassword }}'
25 passwordPolicy: generate
26
27
puthuparambil.aditya7625e522021-01-22 22:01:50 +010028passwordStrengthOverride: basic
29global:
30 ingress:
31 virtualhost:
32 baseurl: "simpledemo.onap.org"
33
shivasubedic615a892021-08-24 13:17:07 +010034config:
35 coreUserName: cpsuser
puthuparambil.aditya7625e522021-01-22 22:01:50 +010036
puthuparambil.adityab35e2de2021-07-23 13:57:22 +010037# Enable all CPS components by default
38cps-core:
puthuparambil.aditya7625e522021-01-22 22:01:50 +010039 enabled: true
shivasubedic615a892021-08-24 13:17:07 +010040 config:
41 appUserExternalSecret: *core-creds-secret
42
43ncmp-dmi-plugin:
44 enabled: true
45 config:
46 coreCredsExternalSecret: *core-creds-secret