1 # Copyright © 2017 Amdocs, Bell Canada
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
7 # http://www.apache.org/licenses/LICENSE-2.0
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.
15 #################################################################
16 # Global configuration defaults.
17 #################################################################
21 #################################################################
22 # Certificate configuration
23 #################################################################
25 nameOverride: cli-cert-initializer
26 aafDeployFqi: deployer@people.osaaf.org
27 aafDeployPass: demo123456!
28 # aafDeployCredsExternalSecret: some secret
30 app_ns: "org.osaaf.aaf"
31 fqi_namespace: "org.onap.cli"
32 fqi: "cli@cli.onap.org"
33 public_fqdn: "aaf.osaaf.org"
36 credsPath: /opt/app/osaaf/local
38 echo "*** transform AAF certs into pem files"
39 mkdir -p {{ .Values.credsPath }}/certs
40 keytool -exportcert -rfc -file {{ .Values.credsPath }}/certs/cacert.pem \
41 -keystore {{ .Values.credsPath }}/{{ .Values.fqi_namespace }}.trust.jks \
43 -storepass $cadi_truststore_password
44 openssl pkcs12 -in {{ .Values.credsPath }}/{{ .Values.fqi_namespace }}.p12 \
45 -nokeys -out {{ .Values.credsPath }}/certs/cert.pem \
46 -passin pass:$cadi_keystore_password_p12 \
47 -passout pass:$cadi_keystore_password_p12
48 echo "*** generating needed file"
49 cat {{ .Values.credsPath }}/{{ .Values.fqi_namespace }}.key \
50 {{ .Values.credsPath }}/certs/cert.pem \
51 {{ .Values.credsPath }}/certs/cacert.pem \
52 > {{ .Values.credsPath }}/certs/fullchain.pem;
53 cat {{ .Values.credsPath }}/certs/fullchain.pem
54 echo "*** change ownership of certificates to targeted user"
55 chown -R 33 {{ .Values.credsPath }}
58 #################################################################
59 # Application configuration defaults.
60 #################################################################
66 # application configuration
70 # default number of instances
77 # probe configuration parameters
79 initialDelaySeconds: 10
81 # necessary to disable liveness probe when setting breakpoints
82 # in debugger so K8s doesn't restart unresponsive container
86 initialDelaySeconds: 10
102 - baseaddr: "cli.api"
105 - baseaddr: "cli2.api"
111 # Configure resource requests and limits
112 # ref: http://kubernetes.io/docs/user-guide/compute-resources/
130 #Pods Service Account