Merge "[UUI] Service Mesh Compliance for UUI"
[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   # 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
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
37   - uid: truststore-creds
38     type: password
39     externalSecret: '{{ tpl (default "" .Values.truststoreCredsExternalSecret) . }}'
40     password: '{{ .Values.truststorePassword }}'
41     passwordPolicy: required
42
43 readinessCheck:
44   wait_for:
45     - aaf-locate
46     - aaf-cm
47     - aaf-service
48
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"
60 appMountPath: "/opt/app/osaaf"
61 importCustomCertsEnabled: false
62 truststoreMountpath: ""
63 truststoreOutputFileName: truststore.jks
64 truststorePassword: changeit
65 envVarToCheck: cadi_keystore_password_p12
66 # ingressTlsSecret:
67
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'