Jozsef Csongvai | 9d4d5af | 2020-07-13 11:10:25 -0400 | [diff] [blame] | 1 | # Copyright © 2020 Bell Canada, Samsung Electronics |
Krzysztof Opasiak | 020cdb9 | 2020-05-01 01:46:37 +0200 | [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 | global: |
Krzysztof Opasiak | 020cdb9 | 2020-05-01 01:46:37 +0200 | [diff] [blame] | 16 | aafAgentImage: onap/aaf/aaf_agent:2.1.20 |
| 17 | aafEnabled: true |
Sylvain Desbureaux | bd94a04 | 2021-04-19 16:00:49 +0200 | [diff] [blame] | 18 | # Give the name of a config map where certInitializer will onboard all certs |
| 19 | # given (certs must be in pem format) |
| 20 | customCertsConfigMap: |
| 21 | # Give the name of a secret where certInitializer will onboard all certs given |
| 22 | # (certs must be in pem format) |
| 23 | # this one superseedes previous one (so if both are given, only certs from |
| 24 | # secret will be onboarded). |
| 25 | customCertsSecret: |
| 26 | |
Krzysztof Opasiak | 020cdb9 | 2020-05-01 01:46:37 +0200 | [diff] [blame] | 27 | |
| 28 | pullPolicy: Always |
| 29 | |
| 30 | secrets: |
| 31 | - uid: deployer-creds |
| 32 | type: basicAuth |
| 33 | externalSecret: '{{ ternary (tpl (default "" .Values.aafDeployCredsExternalSecret) .) "aafIsDisabled" .Values.global.aafEnabled }}' |
| 34 | login: '{{ .Values.aafDeployFqi }}' |
| 35 | password: '{{ .Values.aafDeployPass }}' |
| 36 | passwordPolicy: required |
Jozsef Csongvai | 9d4d5af | 2020-07-13 11:10:25 -0400 | [diff] [blame] | 37 | - uid: truststore-creds |
| 38 | type: password |
| 39 | externalSecret: '{{ tpl (default "" .Values.truststoreCredsExternalSecret) . }}' |
| 40 | password: '{{ .Values.truststorePassword }}' |
| 41 | passwordPolicy: required |
Krzysztof Opasiak | 020cdb9 | 2020-05-01 01:46:37 +0200 | [diff] [blame] | 42 | |
Krzysztof Opasiak | e9754a0 | 2020-07-16 21:06:39 +0200 | [diff] [blame] | 43 | readinessCheck: |
| 44 | wait_for: |
| 45 | - aaf-locate |
| 46 | - aaf-cm |
| 47 | - aaf-service |
| 48 | |
Krzysztof Opasiak | 020cdb9 | 2020-05-01 01:46:37 +0200 | [diff] [blame] | 49 | fqdn: "" |
| 50 | app_ns: "org.osaaf.aaf" |
| 51 | fqi: "" |
| 52 | fqi_namespace: "" |
| 53 | public_fqdn: "aaf.osaaf.org" |
| 54 | aafDeployFqi: "deployer@people.osaaf.org" |
| 55 | aafDeployPass: demo123456! |
| 56 | cadi_latitude: "38.0" |
| 57 | cadi_longitude: "-72.0" |
| 58 | aaf_add_config: "" |
| 59 | mountPath: "/opt/app/osaaf" |
krishnaa96 | edf6f37 | 2020-09-09 09:30:58 +0530 | [diff] [blame] | 60 | appMountPath: "/opt/app/osaaf" |
Jozsef Csongvai | 9d4d5af | 2020-07-13 11:10:25 -0400 | [diff] [blame] | 61 | importCustomCertsEnabled: false |
| 62 | truststoreMountpath: "" |
| 63 | truststoreOutputFileName: truststore.jks |
| 64 | truststorePassword: changeit |
Sylvain Desbureaux | b834159 | 2021-02-23 15:54:00 +0100 | [diff] [blame] | 65 | envVarToCheck: cadi_keystore_password_p12 |
Sylvain Desbureaux | da711dd | 2021-04-07 17:22:42 +0200 | [diff] [blame] | 66 | # ingressTlsSecret: |
Krzysztof Opasiak | 75f1875 | 2020-09-09 20:32:56 +0200 | [diff] [blame] | 67 | |
Krzysztof Opasiak | 5997649 | 2020-10-20 23:17:17 +0200 | [diff] [blame] | 68 | # This introduces implicit dependency on cert-wrapper |
| 69 | # if you are using cert initializer cert-wrapper has to be also deployed. |
| 70 | # We had to move this CM to a separate chart to reduce the total size of our charts |
| 71 | # as it exceeds the default helm limits. |
| 72 | certsCMName: '{{ include "common.release" . }}-cert-wrapper-certs' |