Merge "[AAI] Add model-loader tracing config"
[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   nodePortPrefix: 302
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.2.2
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   nodePortPrefixOverride: 303
108   ports:
109     - name: http
110       port: 8082
111       nodePort: '99'
112   annotations:
113     msb.onap.org/service-info: |
114       {{ if .Values.global.msbEnabled -}}[
115         {
116           "serviceName": "usecaseui-server",
117           "version": "v1",
118           "url": "/api/usecase-server/v1",
119           "path":"/iui/usecaseui",
120           "protocol": "REST",
121           "visualRange":"1",
122           "port": "{{ include "common.getPort" (dict "global" . "name" "http" "getPlain" true) }}",
123           "enable_ssl": false
124         }
125       ]{{ end }}
126
127 ingress:
128   enabled: false
129   service:
130     - baseaddr: "uui-server-api"
131       name: "uui-server"
132       port: 8082
133
134   # We usually recommend not to specify default resources and to leave this as a conscious
135   # choice for the user. This also increases chances charts run on environments with little
136   # resources, such as Minikube. If you do want to specify resources, uncomment the following
137   # lines, adjust them as necessary, and remove the curly braces after 'resources:'.
138   #
139   # Example:
140   # Configure resource requests and limits
141   # ref: http://kubernetes.io/docs/user-guide/compute-resources/
142   # Minimum memory for development is 2 CPU cores and 4GB memory
143   # Minimum memory for production is 4 CPU cores and 8GB memory
144 resources:
145   small:
146     limits:
147       cpu: "1.5"
148       memory: "2Gi"
149     requests:
150       cpu: "1"
151       memory: "1Gi"
152   large:
153     limits:
154       cpu: "2"
155       memory: "4Gi"
156     requests:
157       cpu: "1"
158       memory: "2Gi"
159   unlimited: {}
160
161 serviceAccount:
162   nameOverride: uui-server
163   roles:
164     - read
165
166 securityContext:
167   user_id: 100
168   group_id: 655533
169
170 wait_for_job_container:
171   containers:
172     - '{{ include "common.name" . }}-job'