[COMMON] Add custom certs into AAF truststore
[oom.git] / kubernetes / common / certInitializer / values.yaml
1 # Copyright © 2020 Bell Canada, Samsung Electronics
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:
16   aafAgentImage: onap/aaf/aaf_agent:2.1.20
17   aafEnabled: true
18
19 pullPolicy: Always
20
21 secrets:
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
28   - uid: truststore-creds
29     type: password
30     externalSecret: '{{ tpl (default "" .Values.truststoreCredsExternalSecret) . }}'
31     password: '{{ .Values.truststorePassword }}'
32     passwordPolicy: required
33
34 readinessCheck:
35   wait_for:
36     - aaf-locate
37     - aaf-cm
38     - aaf-service
39
40 aafDeployFqi: "changeme"
41 fqdn: ""
42 app_ns: "org.osaaf.aaf"
43 fqi: ""
44 fqi_namespace: ""
45 public_fqdn: "aaf.osaaf.org"
46 aafDeployFqi: "deployer@people.osaaf.org"
47 aafDeployPass: demo123456!
48 cadi_latitude: "38.0"
49 cadi_longitude: "-72.0"
50 aaf_add_config: ""
51 mountPath: "/opt/app/osaaf"
52 appMountPath: "/opt/app/osaaf"
53 importCustomCertsEnabled: false
54 truststoreMountpath: ""
55 truststoreOutputFileName: truststore.jks
56 truststorePassword: changeit
57 envVarToCheck: cadi_keystore_password_p12
58
59 # This introduces implicit dependency on cert-wrapper
60 # if you are using cert initializer cert-wrapper has to be also deployed.
61 # We had to move this CM to a separate chart to reduce the total size of our charts
62 # as it exceeds the default helm limits.
63 certsCMName: '{{ include "common.release" . }}-cert-wrapper-certs'