[UUI] Service Mesh Compliance for UUI
[oom.git] / kubernetes / uui / values.yaml
1 # Copyright © 2017 Amdocs, Bell Canada
2 # Copyright (c) 2022 Nordix Foundation.
3 #
4 # Licensed under the Apache License, Version 2.0 (the "License");
5 # you may not use this file except in compliance with the License.
6 # You may obtain a copy of the License at
7 #
8 #       http://www.apache.org/licenses/LICENSE-2.0
9 #
10 # Unless required by applicable law or agreed to in writing, software
11 # distributed under the License is distributed on an "AS IS" BASIS,
12 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 # See the License for the specific language governing permissions and
14 # limitations under the License.
15
16 # Default values for uui.
17 # This is a YAML-formatted file.
18 # Declare variables to be passed into your templates.
19 global:
20   uuiPortPrefix: 303
21
22 #################################################################
23 # AAF part
24 #################################################################
25 certInitializer:
26   nameOverride: uui-cert-initializer
27   aafDeployFqi: deployer@people.osaaf.org
28   aafDeployPass: demo123456!
29   # aafDeployCredsExternalSecret: some secret
30   fqdn: uui
31   fqi: uui@uui.onap.org
32   fqi_namespace: org.onap.uui
33   public_fqdn: uui.onap.org
34   cadi_longitude: "0.0"
35   cadi_latitude: "0.0"
36   app_ns: org.osaaf.aaf
37   credsPath: /opt/app/osaaf/local
38   aaf_add_config: |
39     echo "*** changing them into shell safe ones"
40     export KEYSTORE_PASSWORD=$(tr -cd '[:alnum:]' < /dev/urandom | fold -w64 | head -n1)
41     export TRUSTSORE_PASSWORD=$(tr -cd '[:alnum:]' < /dev/urandom | fold -w64 | head -n1)
42     cd {{ .Values.credsPath }}
43     keytool -storepasswd -new "${KEYSTORE_PASSWORD}" \
44       -storepass "${cadi_keystore_password_p12}" \
45       -keystore {{ .Values.fqi_namespace }}.p12
46     keytool -storepasswd -new "${TRUSTSORE_PASSWORD}" \
47       -storepass "${cadi_truststore_password}" \
48       -keystore {{ .Values.fqi_namespace }}.trust.jks
49     echo "*** save the generated passwords"
50     echo "KEYSTORE_PASSWORD=${KEYSTORE_PASSWORD}" > mycreds.prop
51     echo "TRUSTSORE_PASSWORD=${TRUSTSORE_PASSWORD}" >> mycreds.prop
52     echo "*** change ownership of certificates to targeted user"
53     chown -R 1000 {{ .Values.credsPath }}
54
55 subChartsOnly:
56   enabled: true
57
58 flavor: small
59
60 # application image
61 image: onap/usecase-ui:5.1.1
62 pullPolicy: Always
63
64 # application configuration
65
66 msbaddr: msb-iag.{{include "common.namespace" .}}:80
67 mraddr: message-router.{{include "common.namespace" .}}:3904
68
69 # flag to enable debugging - application support required
70 debugEnabled: false
71
72 # default number of instances
73 replicaCount: 1
74
75 nodeSelector: {}
76
77 affinity: {}
78
79 # probe configuration parameters
80 liveness:
81   initialDelaySeconds: 10
82   periodSeconds: 10
83   # necessary to disable liveness probe when setting breakpoints
84   # in debugger so K8s doesn't restart unresponsive container
85   enabled: true
86
87 readiness:
88   initialDelaySeconds: 10
89   periodSeconds: 10
90
91 service:
92   type: NodePort
93   name: uui
94   portName: http
95   internalPort: 8443
96   nodePort: 98
97
98 ingress:
99   enabled: false
100   service:
101     - baseaddr: "uui-ui"
102       name: "uui"
103       port: 8443
104   config:
105     ssl: "redirect"
106
107   # We usually recommend not to specify default resources and to leave this as a conscious
108   # choice for the user. This also increases chances charts run on environments with little
109   # resources, such as Minikube. If you do want to specify resources, uncomment the following
110   # lines, adjust them as necessary, and remove the curly braces after 'resources:'.
111   #
112   # Example:
113   # Configure resource requests and limits
114   # ref: http://kubernetes.io/docs/user-guide/compute-resources/
115   # Minimum memory for development is 2 CPU cores and 4GB memory
116   # Minimum memory for production is 4 CPU cores and 8GB memory
117 resources:
118   small:
119     limits:
120       cpu: 250m
121       memory: 1Gi
122     requests:
123       cpu: 250m
124       memory: 1Gi
125   large:
126     limits:
127       cpu: 500m
128       memory: 1Gi
129     requests:
130       cpu: 500m
131       memory: 1Gi
132   unlimited: {}