Merge "[DCAEGEN2] Update dcaegen2-services-mapper Helm Chart for London Release"
[oom.git] / kubernetes / uui / components / uui-server / values.yaml
1 # Copyright © 2017 Amdocs, Bell Canada
2 # Modifications Copyright © 2022 CMCC Corporation
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 # Default values for uui.
16 # This is a YAML-formatted file.
17 # Declare variables to be passed into your templates.
18
19 #################################################################
20 # Global configuration defaults.
21 #################################################################
22 global:
23   uuiPortPrefix: 303
24
25 secrets:
26   - uid: pg-root-pass
27     name: &pgRootPassSecretName '{{ include "common.release" . }}-uui-pg-root-pass'
28     type: password
29     externalSecret: '{{ ternary "" (tpl (default "" .Values.postgres.config.pgRootPasswordExternalSecret) .) (hasSuffix "uui-pg-root-pass" .Values.postgres.config.pgRootPasswordExternalSecret) }}'
30     password: '{{ .Values.postgres.config.pgRootpassword }}'
31     policy: generate
32   - uid: pg-user-creds
33     name: &pgUserCredsSecretName '{{ include "common.release" . }}-uui-pg-user-creds'
34     type: basicAuth
35     externalSecret: '{{ ternary "" (tpl (default "" .Values.postgres.config.pgUserExternalSecret) .) (hasSuffix "uui-pg-user-creds" .Values.postgres.config.pgUserExternalSecret) }}'
36     login: '{{ .Values.postgres.config.pgUserName }}'
37     password: '{{ .Values.postgres.config.pgUserPassword }}'
38     passwordPolicy: generate
39
40 #################################################################
41 # Application configuration defaults.
42 #################################################################
43
44 subChartsOnly:
45   enabled: true
46
47 flavor: small
48
49 # application image
50 repository: nexus3.onap.org:10001
51 image: onap/usecase-ui-server:5.1.3
52 pullPolicy: Always
53
54 # application configuration
55
56 msbaddr: msb-iag.{{include "common.namespace" .}}:80
57 mraddr: message-router.{{include "common.namespace" .}}:3904
58
59 # application configuration override for postgres
60 postgres:
61   nameOverride: &postgresName uui-server-postgres
62   service:
63     name: *postgresName
64     name2: uui-server-pg-primary
65     name3: uui-server-pg-replica
66   container:
67     name:
68       primary: uui-server-pg-primary
69       replica: uui-server-pg-replica
70   persistence:
71     mountSubPath: uui/uuiserver/data
72     mountInitPath: uui/uuiserver
73   config:
74     pgUserName: uui
75     pgDatabase: uuidb
76     pgUserExternalSecret: *pgUserCredsSecretName
77     pgRootPasswordExternalSecret: *pgRootPassSecretName
78
79
80
81 # flag to enable debugging - application support required
82 debugEnabled: false
83
84 # default number of instances
85 replicaCount: 1
86
87 nodeSelector: {}
88
89 affinity: {}
90
91 # probe configuration parameters
92 liveness:
93   initialDelaySeconds: 120
94   periodSeconds: 10
95   # necessary to disable liveness probe when setting breakpoints
96   # in debugger so K8s doesn't restart unresponsive container
97   enabled: true
98
99 readiness:
100   initialDelaySeconds: 60
101   periodSeconds: 10
102
103 service:
104   type: NodePort
105   name: uui-server
106   internalPort: 8082
107   ports:
108     - name: http
109       port: 8082
110       nodePort: '99'
111   annotations:
112     msb.onap.org/service-info: |
113       {{ if .Values.global.msbEnabled -}}[
114         {
115           "serviceName": "usecaseui-server",
116           "version": "v1",
117           "url": "/api/usecase-server/v1",
118           "path":"/iui/usecaseui",
119           "protocol": "REST",
120           "visualRange":"1",
121           "port": "{{ include "common.getPort" (dict "global" . "name" "http" "getPlain" true) }}",
122           "enable_ssl": false
123         }
124       ]{{ end }}
125
126 ingress:
127   enabled: false
128   service:
129     - baseaddr: "uui-server-api"
130       name: "uui-server"
131       port: 8082
132
133   # We usually recommend not to specify default resources and to leave this as a conscious
134   # choice for the user. This also increases chances charts run on environments with little
135   # resources, such as Minikube. If you do want to specify resources, uncomment the following
136   # lines, adjust them as necessary, and remove the curly braces after 'resources:'.
137   #
138   # Example:
139   # Configure resource requests and limits
140   # ref: http://kubernetes.io/docs/user-guide/compute-resources/
141   # Minimum memory for development is 2 CPU cores and 4GB memory
142   # Minimum memory for production is 4 CPU cores and 8GB memory
143 resources:
144   small:
145     limits:
146       cpu: 1.5
147       memory: 350Mi
148     requests:
149       cpu: 1
150       memory: 245Mi
151   large:
152     limits:
153       cpu: 2
154       memory: 500Mi
155     requests:
156       cpu: 1
157       memory: 500Mi
158   unlimited: {}
159
160 serviceAccount:
161   nameOverride: uui-server
162   roles:
163     - read
164
165 securityContext:
166   user_id: 100
167   group_id: 655533
168
169 wait_for_job_container:
170   containers:
171     - '{{ include "common.name" . }}-job'