blob: 06ff2792076678601f7ce53919cce5266858bf26 [file] [log] [blame]
Niranjana01463a92021-07-30 14:40:44 +00001# ============= LICENSE_START ================================================
2# ============================================================================
3# Copyright (C) 2021 Wipro Limited.
Jack Lucas64da4e72023-03-03 14:46:05 -05004# Copyright (c) 2022-2023 J. F. Lucas. All rights reserved.
Niranjana01463a92021-07-30 14:40:44 +00005# ============================================================================
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#################################################################
22global:
23 nodePortPrefix: 302
24 nodePortPrefixExt: 304
Maciej Wereski7000a7c2021-12-16 12:24:06 +010025 centralizedLoggingEnabled: true
Niranjana01463a92021-07-30 14:40:44 +000026
27#################################################################
28# Filebeat Configuration Defaults.
29#################################################################
30filebeatConfig:
31 logstashServiceName: log-ls
32 logstashPort: 5044
33
34#################################################################
Niranjana01463a92021-07-30 14:40:44 +000035# Application Configuration Defaults.
36#################################################################
37# Application Image
Vijay Venkatesh Kumar8eeeecd2021-09-13 17:02:05 -040038image: onap/org.onap.dcaegen2.services.datalakeadminui:1.1.1
Niranjana01463a92021-07-30 14:40:44 +000039
40# Log directory where logging sidecar should look for log files
Maciej Wereski7000a7c2021-12-16 12:24:06 +010041# if path is set to null sidecar won't be deployed in spite of
42# global.centralizedLoggingEnabled setting.
43log:
44 path: /var/log/ONAP/dcaegen2/services/datalake-admin-ui
45logConfigMapNamePrefix: '{{ include "common.fullname" . }}'
Niranjana01463a92021-07-30 14:40:44 +000046
Niranjana01463a92021-07-30 14:40:44 +000047# Dependencies
48readinessCheck:
49 wait_for:
Niranjana01463a92021-07-30 14:40:44 +000050 - dcae-datalake-feeder
51
52# Probe Configuration
53readiness:
54 initialDelaySeconds: 30
55 periodSeconds: 10
56 timeoutSeconds: 1
57 path: /
58 scheme: HTTP
59 port: 8088
60
61# Service Configuration
62service:
63 type: ClusterIP
64 name: dl-admin-ui
65 ports:
66 - name: http
67 port: 8088
68 port_protocol: http
69
Niranjana01463a92021-07-30 14:40:44 +000070# Initial Application Configuration
71applicationConfig:
72 FEEDER_ADDR: dl-feeder
73
74# Resource Limit Flavor -By Default Using Small
75flavor: small
76# Segregation for Different Environment (Small and Large)
77resources:
78 small:
79 limits:
80 cpu: 1
81 memory: 1Gi
82 requests:
83 cpu: 1
84 memory: 1Gi
85 large:
86 limits:
87 cpu: 2
88 memory: 2Gi
89 requests:
90 cpu: 2
91 memory: 2Gi
92 unlimited: {}
farida azmycb03ac72021-09-12 16:14:12 +020093
94#Pods Service Account
95serviceAccount:
96 nameOverride: dcae-datalake-admin-ui
97 roles:
98 - read