blob: 754b016fe8c25b0681ff03c55362883833490931 [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
puthuparambil.adityaf5ba7e32021-09-14 10:29:32 +010026 - uid: dmi-plugin-user-creds
27 name: &dmi-plugin-creds-secret '{{ include "common.release" . }}-cps-dmi-plugin-user-creds'
28 type: basicAuth
29 externalSecret: '{{ tpl (default "" .Values.config.dmiPluginUserExternalSecret) . }}'
30 login: '{{ .Values.config.dmiPluginUserName }}'
31 password: '{{ .Values.config.dmiPluginUserPassword }}'
32 passwordPolicy: generate
shivasubedic615a892021-08-24 13:17:07 +010033
puthuparambil.aditya7625e522021-01-22 22:01:50 +010034passwordStrengthOverride: basic
Bruno Sakoto5470cda2022-03-14 22:50:52 -040035
36standaloneDeployment: false
37
puthuparambil.aditya7625e522021-01-22 22:01:50 +010038global:
39 ingress:
40 virtualhost:
41 baseurl: "simpledemo.onap.org"
42
shivasubedic615a892021-08-24 13:17:07 +010043config:
44 coreUserName: cpsuser
puthuparambil.adityaf5ba7e32021-09-14 10:29:32 +010045 dmiPluginUserName: dmiuser
puthuparambil.aditya7625e522021-01-22 22:01:50 +010046
puthuparambil.adityab35e2de2021-07-23 13:57:22 +010047# Enable all CPS components by default
48cps-core:
puthuparambil.aditya7625e522021-01-22 22:01:50 +010049 enabled: true
shivasubedic615a892021-08-24 13:17:07 +010050 config:
51 appUserExternalSecret: *core-creds-secret
puthuparambil.adityaf5ba7e32021-09-14 10:29:32 +010052 dmiPluginUserExternalSecret: *dmi-plugin-creds-secret
shivasubedic615a892021-08-24 13:17:07 +010053
puthuparambil.adityaf71e3652021-08-18 13:57:24 +010054cps-temporal:
55 enabled: true
56
shivasubedic615a892021-08-24 13:17:07 +010057ncmp-dmi-plugin:
58 enabled: true
59 config:
puthuparambil.adityaf5ba7e32021-09-14 10:29:32 +010060 appUserExternalSecret: *dmi-plugin-creds-secret
Renu Kumaribcacd772021-09-16 15:36:23 -040061 cpsCore:
62 credsExternalSecret: *core-creds-secret