Merge "[CONSUL] Add limits to consul chart."
[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   repository: nexus3.onap.org:10001
17   aafAgentImage: onap/aaf/aaf_agent:2.1.20
18   aafEnabled: true
19   jreImage: registry.gitlab.com/onap-integration/docker/onap-java
20
21 pullPolicy: Always
22
23 secrets:
24   - uid: deployer-creds
25     type: basicAuth
26     externalSecret: '{{ ternary (tpl (default "" .Values.aafDeployCredsExternalSecret) .) "aafIsDisabled" .Values.global.aafEnabled }}'
27     login: '{{ .Values.aafDeployFqi }}'
28     password: '{{ .Values.aafDeployPass }}'
29     passwordPolicy: required
30   - uid: truststore-creds
31     type: password
32     externalSecret: '{{ tpl (default "" .Values.truststoreCredsExternalSecret) . }}'
33     password: '{{ .Values.truststorePassword }}'
34     passwordPolicy: required
35
36 readinessCheck:
37   wait_for:
38     - aaf-locate
39     - aaf-cm
40     - aaf-service
41
42 aafDeployFqi: "changeme"
43 fqdn: ""
44 app_ns: "org.osaaf.aaf"
45 fqi: ""
46 fqi_namespace: ""
47 public_fqdn: "aaf.osaaf.org"
48 aafDeployFqi: "deployer@people.osaaf.org"
49 aafDeployPass: demo123456!
50 cadi_latitude: "38.0"
51 cadi_longitude: "-72.0"
52 aaf_add_config: ""
53 mountPath: "/opt/app/osaaf"
54 appMountPath: "/opt/app/osaaf"
55 importCustomCertsEnabled: false
56 truststoreMountpath: ""
57 truststoreOutputFileName: truststore.jks
58 truststorePassword: changeit
59
60 # 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.
64 certsCMName: '{{ include "common.release" . }}-cert-wrapper-certs'