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 | 1b68615 | 2020-06-02 11:50:12 +0200 | [diff] [blame] | 16 | repository: nexus3.onap.org:10001 |
Krzysztof Opasiak | 020cdb9 | 2020-05-01 01:46:37 +0200 | [diff] [blame] | 17 | aafAgentImage: onap/aaf/aaf_agent:2.1.20 |
| 18 | aafEnabled: true |
Jozsef Csongvai | 9d4d5af | 2020-07-13 11:10:25 -0400 | [diff] [blame^] | 19 | jreImage: registry.gitlab.com/onap-integration/docker/onap-java |
Krzysztof Opasiak | 020cdb9 | 2020-05-01 01:46:37 +0200 | [diff] [blame] | 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 |
Jozsef Csongvai | 9d4d5af | 2020-07-13 11:10:25 -0400 | [diff] [blame^] | 30 | - uid: truststore-creds |
| 31 | type: password |
| 32 | externalSecret: '{{ tpl (default "" .Values.truststoreCredsExternalSecret) . }}' |
| 33 | password: '{{ .Values.truststorePassword }}' |
| 34 | passwordPolicy: required |
Krzysztof Opasiak | 020cdb9 | 2020-05-01 01:46:37 +0200 | [diff] [blame] | 35 | |
Krzysztof Opasiak | e9754a0 | 2020-07-16 21:06:39 +0200 | [diff] [blame] | 36 | readinessCheck: |
| 37 | wait_for: |
| 38 | - aaf-locate |
| 39 | - aaf-cm |
| 40 | - aaf-service |
| 41 | |
Krzysztof Opasiak | 020cdb9 | 2020-05-01 01:46:37 +0200 | [diff] [blame] | 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" |
Jozsef Csongvai | 9d4d5af | 2020-07-13 11:10:25 -0400 | [diff] [blame^] | 54 | importCustomCertsEnabled: false |
| 55 | truststoreMountpath: "" |
| 56 | truststoreOutputFileName: truststore.jks |
| 57 | truststorePassword: changeit |