puthuparambil.aditya | b35e2de | 2021-07-23 13:57:22 +0100 | [diff] [blame] | 1 | # Copyright (C) 2021 Bell Canada |
puthuparambil.aditya | 7625e52 | 2021-01-22 22:01:50 +0100 | [diff] [blame] | 2 | # |
| 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.aditya | 7625e52 | 2021-01-22 22:01:50 +0100 | [diff] [blame] | 16 | # Global configuration defaults. |
| 17 | ################################################################# |
shivasubedi | c615a89 | 2021-08-24 13:17:07 +0100 | [diff] [blame] | 18 | secrets: |
| 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.aditya | f5ba7e3 | 2021-09-14 10:29:32 +0100 | [diff] [blame] | 26 | - 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 |
shivasubedi | c615a89 | 2021-08-24 13:17:07 +0100 | [diff] [blame] | 33 | |
puthuparambil.aditya | 7625e52 | 2021-01-22 22:01:50 +0100 | [diff] [blame] | 34 | passwordStrengthOverride: basic |
| 35 | global: |
| 36 | ingress: |
| 37 | virtualhost: |
| 38 | baseurl: "simpledemo.onap.org" |
| 39 | |
shivasubedi | c615a89 | 2021-08-24 13:17:07 +0100 | [diff] [blame] | 40 | config: |
| 41 | coreUserName: cpsuser |
puthuparambil.aditya | f5ba7e3 | 2021-09-14 10:29:32 +0100 | [diff] [blame] | 42 | dmiPluginUserName: dmiuser |
puthuparambil.aditya | 7625e52 | 2021-01-22 22:01:50 +0100 | [diff] [blame] | 43 | |
puthuparambil.aditya | b35e2de | 2021-07-23 13:57:22 +0100 | [diff] [blame] | 44 | # Enable all CPS components by default |
| 45 | cps-core: |
puthuparambil.aditya | 7625e52 | 2021-01-22 22:01:50 +0100 | [diff] [blame] | 46 | enabled: true |
shivasubedi | c615a89 | 2021-08-24 13:17:07 +0100 | [diff] [blame] | 47 | config: |
| 48 | appUserExternalSecret: *core-creds-secret |
puthuparambil.aditya | f5ba7e3 | 2021-09-14 10:29:32 +0100 | [diff] [blame] | 49 | dmiPluginUserExternalSecret: *dmi-plugin-creds-secret |
shivasubedi | c615a89 | 2021-08-24 13:17:07 +0100 | [diff] [blame] | 50 | |
puthuparambil.aditya | f71e365 | 2021-08-18 13:57:24 +0100 | [diff] [blame] | 51 | cps-temporal: |
| 52 | enabled: true |
| 53 | |
shivasubedi | c615a89 | 2021-08-24 13:17:07 +0100 | [diff] [blame] | 54 | ncmp-dmi-plugin: |
| 55 | enabled: true |
| 56 | config: |
puthuparambil.aditya | f5ba7e3 | 2021-09-14 10:29:32 +0100 | [diff] [blame] | 57 | appUserExternalSecret: *dmi-plugin-creds-secret |
Renu Kumari | bcacd77 | 2021-09-16 15:36:23 -0400 | [diff] [blame] | 58 | cpsCore: |
| 59 | credsExternalSecret: *core-creds-secret |