Merge "[AAI] Add model-loader tracing config"
[oom.git] / kubernetes / dcaegen2-services / components / dcae-datalake-admin-ui / values.yaml
1 # ============= LICENSE_START ================================================
2 # ============================================================================
3 # Copyright (C) 2021 Wipro Limited.
4 #  Copyright (c) 2022-2023 J. F. Lucas. All rights reserved.
5 # ============================================================================
6 # Licensed under the Apache License, Version 2.0 (the "License");
7 # you may not use this file except in compliance with the License.
8 # You may obtain a copy of the License at
9 #
10 #     http://www.apache.org/licenses/LICENSE-2.0
11 #
12 # Unless required by applicable law or agreed to in writing, software
13 # distributed under the License is distributed on an "AS IS" BASIS,
14 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 # See the License for the specific language governing permissions and
16 # limitations under the License.
17 # ============= LICENSE_END ==================================================
18
19 #################################################################
20 # Global Configuration Defaults.
21 #################################################################
22 global:
23   nodePortPrefix: 302
24   nodePortPrefixExt: 304
25   centralizedLoggingEnabled: true
26
27 #################################################################
28 # Filebeat Configuration Defaults.
29 #################################################################
30 filebeatConfig:
31   logstashServiceName: log-ls
32   logstashPort: 5044
33
34 #################################################################
35 # Application Configuration Defaults.
36 #################################################################
37 # Application Image
38 image: onap/org.onap.dcaegen2.services.datalakeadminui:1.1.1
39
40 # Log directory where logging sidecar should look for log files
41 # if path is set to null sidecar won't be deployed in spite of
42 # global.centralizedLoggingEnabled setting.
43 log:
44   path: /var/log/ONAP/dcaegen2/services/datalake-admin-ui
45 logConfigMapNamePrefix: '{{ include "common.fullname" . }}'
46
47 # Dependencies
48 readinessCheck:
49   wait_for:
50     services:
51       - dl-feeder
52
53 # Probe Configuration
54 readiness:
55   initialDelaySeconds: 30
56   periodSeconds: 10
57   timeoutSeconds: 1
58   path: /
59   scheme: HTTP
60   port: 8088
61
62 # Service Configuration
63 service:
64   type: ClusterIP
65   name: dl-admin-ui
66   ports:
67     - name: http
68       port: 8088
69       port_protocol: http
70
71 serviceMesh:
72   authorizationPolicy:
73     authorizedPrincipals: []
74
75 # Initial Application Configuration
76 applicationConfig:
77   FEEDER_ADDR: dl-feeder
78
79 # Resource Limit Flavor -By Default Using Small
80 flavor: small
81 # Segregation for Different Environment (Small and Large)
82 resources:
83   small:
84     limits:
85       cpu: "2"
86       memory: "500Mi"
87     requests:
88       cpu: "1"
89       memory: "500Mi"
90   large:
91     limits:
92       cpu: "4"
93       memory: "1Gi"
94     requests:
95       cpu: "2"
96       memory: "1Gi"
97   unlimited: {}
98
99 #Pods Service Account
100 serviceAccount:
101   nameOverride: dcae-datalake-admin-ui
102   roles:
103     - read