Merge "[UUI] Service Mesh Compliance for UUI"
[oom.git] / kubernetes / appc / components / appc-cdt / values.yaml
1 # Copyright © 2018  AT&T, Amdocs, Bell Canada Intellectual Property.  All rights reserved.
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 #################################################################
16 # Global configuration defaults.
17 #################################################################
18 global:
19   nodePortPrefix: 302
20
21
22 #################################################################
23 # AAF part
24 #################################################################
25
26 # dependency / sub-chart configuration
27 certInitializer:
28   nameOverride: appc-cdt-cert-initializer
29   truststoreMountpath: /opt/onap/appc/data/stores
30   fqdn: "appc-cdt"
31   app_ns: "org.osaaf.aaf"
32   fqi: "appc-cdt@appc-cdt.onap.org"
33   fqi_namespace: org.onap.appc-cdt
34   public_fqdn: "appc-cdt.onap.org"
35   aafDeployFqi: "deployer@people.osaaf.org"
36   aafDeployPass: demo123456!
37   cadi_latitude: "38.0"
38   cadi_longitude: "-72.0"
39   credsPath: /opt/app/osaaf/local
40   aaf_add_config: |
41     echo "*** transform AAF certs into pem files"
42     mkdir -p {{ .Values.credsPath }}/certs
43     openssl pkcs12 -in {{ .Values.credsPath }}/{{ .Values.fqi_namespace }}.p12 \
44       -nokeys -out {{ .Values.credsPath }}/certs/cert.pem \
45       -passin pass:$cadi_keystore_password_p12 \
46       -passout pass:$cadi_keystore_password_p12
47     echo "*** copy key file"
48     cp {{ .Values.credsPath }}/{{ .Values.fqi_namespace }}.key \
49       {{ .Values.credsPath }}/certs/key.pem
50     echo "*** change ownership of certificates to targeted user"
51     chown -R 1000 {{ .Values.credsPath }}
52
53 #################################################################
54 # Application configuration defaults.
55 #################################################################
56
57 flavor: small
58
59 # application image
60 image: onap/appc-cdt-image:1.7.2
61 pullPolicy: Always
62
63 # application configuration
64 config: {}
65
66 # default number of instances
67 replicaCount: 1
68
69 nodeSelector: {}
70
71 affinity: {}
72
73 # probe configuration parameters
74 liveness:
75   initialDelaySeconds: 10
76   periodSeconds: 10
77   # necessary to disable liveness probe when setting breakpoints
78   # in debugger so K8s doesn't restart unresponsive container
79   enabled: true
80
81 readiness:
82   initialDelaySeconds: 10
83   periodSeconds: 10
84
85 service:
86   type: NodePort
87   name: appc-cdt
88   externalPort: 18080
89   internalPort: 18080
90   nodePort: 89
91
92 ingress:
93   enabled: false
94   service:
95     - baseaddr: appccdt
96       name: "appc-cdt"
97       port: 18080
98   config:
99     ssl: "redirect"
100
101 # Configure resource requests and limits
102 # ref: http://kubernetes.io/docs/user-guide/compute-resources/
103 resources:
104   small:
105     limits:
106       cpu: 1
107       memory: 1Gi
108     requests:
109       cpu: 0.5
110       memory: 500Mi
111   large:
112     limits:
113       cpu: 2
114       memory: 2Gi
115     requests:
116       cpu: 1
117       memory: 1Gi
118   unlimited: {}