Merge "[AAI] Add model-loader tracing config"
[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   nodePortPrefix: 302
21
22 subChartsOnly:
23   enabled: true
24
25 flavor: small
26
27 # application image
28 image: onap/usecase-ui:5.2.2
29 pullPolicy: Always
30
31 # application configuration
32
33 msbaddr: msb-iag.{{include "common.namespace" .}}:80
34 mraddr: message-router.{{include "common.namespace" .}}:3904
35
36 # flag to enable debugging - application support required
37 debugEnabled: false
38
39 # default number of instances
40 replicaCount: 1
41
42 nodeSelector: {}
43
44 affinity: {}
45
46 # probe configuration parameters
47 liveness:
48   initialDelaySeconds: 10
49   periodSeconds: 10
50   # necessary to disable liveness probe when setting breakpoints
51   # in debugger so K8s doesn't restart unresponsive container
52   enabled: true
53
54 readiness:
55   initialDelaySeconds: 10
56   periodSeconds: 10
57
58 service:
59   type: NodePort
60   name: uui
61   internalPort: 8080
62   nodePortPrefixOverride: 303
63   ports:
64     - name: http
65       port: 8080
66       nodePort: '98'
67   annotations:
68     msb.onap.org/service-info: |
69       {{ if .Values.global.msbEnabled -}}[
70         {
71           "serviceName": "usecaseui-ui",
72           "version": "v1",
73           "url": "/usecase-ui",
74           "path":"/iui/usecaseui",
75           "protocol": "UI",
76           "visualRange":"1",
77           "port": "{{ include "common.getPort" (dict "global" . "name" "http" "getPlain" true) }}",
78           "enable_ssl": false
79         }
80       ]{{ end }}
81
82 ingress:
83   enabled: false
84   service:
85     - baseaddr: "uui-ui"
86       name: "uui"
87       port: 8080
88   config:
89     ssl: "redirect"
90
91   # We usually recommend not to specify default resources and to leave this as a conscious
92   # choice for the user. This also increases chances charts run on environments with little
93   # resources, such as Minikube. If you do want to specify resources, uncomment the following
94   # lines, adjust them as necessary, and remove the curly braces after 'resources:'.
95   #
96   # Example:
97   # Configure resource requests and limits
98   # ref: http://kubernetes.io/docs/user-guide/compute-resources/
99   # Minimum memory for development is 2 CPU cores and 4GB memory
100   # Minimum memory for production is 4 CPU cores and 8GB memory
101 resources:
102   small:
103     limits:
104       cpu: "250m"
105       memory: "1Gi"
106     requests:
107       cpu: "250m"
108       memory: "1Gi"
109   large:
110     limits:
111       cpu: "500m"
112       memory: "1Gi"
113     requests:
114       cpu: "500m"
115       memory: "1Gi"
116   unlimited: {}