blob: 2ef6e2d8287862d76ab87133dea4471d8a8d1b47 [file] [log] [blame]
Jozsef Csongvai9d4d5af2020-07-13 11:10:25 -04001# Copyright © 2020 Bell Canada, Samsung Electronics
Krzysztof Opasiak020cdb92020-05-01 01:46:37 +02002#
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
15global:
Krzysztof Opasiak020cdb92020-05-01 01:46:37 +020016 aafAgentImage: onap/aaf/aaf_agent:2.1.20
17 aafEnabled: true
18
19pullPolicy: Always
20
21secrets:
22 - uid: deployer-creds
23 type: basicAuth
24 externalSecret: '{{ ternary (tpl (default "" .Values.aafDeployCredsExternalSecret) .) "aafIsDisabled" .Values.global.aafEnabled }}'
25 login: '{{ .Values.aafDeployFqi }}'
26 password: '{{ .Values.aafDeployPass }}'
27 passwordPolicy: required
Jozsef Csongvai9d4d5af2020-07-13 11:10:25 -040028 - uid: truststore-creds
29 type: password
30 externalSecret: '{{ tpl (default "" .Values.truststoreCredsExternalSecret) . }}'
31 password: '{{ .Values.truststorePassword }}'
32 passwordPolicy: required
Krzysztof Opasiak020cdb92020-05-01 01:46:37 +020033
Krzysztof Opasiake9754a02020-07-16 21:06:39 +020034readinessCheck:
35 wait_for:
36 - aaf-locate
37 - aaf-cm
38 - aaf-service
39
Krzysztof Opasiak020cdb92020-05-01 01:46:37 +020040aafDeployFqi: "changeme"
41fqdn: ""
42app_ns: "org.osaaf.aaf"
43fqi: ""
44fqi_namespace: ""
45public_fqdn: "aaf.osaaf.org"
46aafDeployFqi: "deployer@people.osaaf.org"
47aafDeployPass: demo123456!
48cadi_latitude: "38.0"
49cadi_longitude: "-72.0"
50aaf_add_config: ""
51mountPath: "/opt/app/osaaf"
krishnaa96edf6f372020-09-09 09:30:58 +053052appMountPath: "/opt/app/osaaf"
Jozsef Csongvai9d4d5af2020-07-13 11:10:25 -040053importCustomCertsEnabled: false
54truststoreMountpath: ""
55truststoreOutputFileName: truststore.jks
56truststorePassword: changeit
Sylvain Desbureauxb8341592021-02-23 15:54:00 +010057envVarToCheck: cadi_keystore_password_p12
Sylvain Desbureauxda711dd2021-04-07 17:22:42 +020058# ingressTlsSecret:
Krzysztof Opasiak75f18752020-09-09 20:32:56 +020059
Krzysztof Opasiak59976492020-10-20 23:17:17 +020060# This introduces implicit dependency on cert-wrapper
61# if you are using cert initializer cert-wrapper has to be also deployed.
62# We had to move this CM to a separate chart to reduce the total size of our charts
63# as it exceeds the default helm limits.
64certsCMName: '{{ include "common.release" . }}-cert-wrapper-certs'