blob: e2e44511420ddf44b0ef967069e9d945e07f059c [file] [log] [blame]
Jack Lucasd41dbdb2021-02-16 11:07:28 -05001#============LICENSE_START========================================================
2# ================================================================================
Jack Lucas64da4e72023-03-03 14:46:05 -05003# Copyright (c) 2021-2023 J. F. Lucas. All rights reserved.
vv770de8c5c682021-04-15 12:21:36 -04004# Copyright (c) 2021 AT&T Intellectual Property. All rights reserved.
sushant5365b14032023-04-13 11:42:59 +05305# Copyright (c) 2023 Deutsche Telekom AG. All rights reserved.
Jack Lucasd41dbdb2021-02-16 11:07:28 -05006# ================================================================================
7# Licensed under the Apache License, Version 2.0 (the "License");
8# you may not use this file except in compliance with the License.
9# You may obtain a copy of the License at
10#
11# http://www.apache.org/licenses/LICENSE-2.0
12#
13# Unless required by applicable law or agreed to in writing, software
14# distributed under the License is distributed on an "AS IS" BASIS,
15# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16# See the License for the specific language governing permissions and
17# limitations under the License.
18# ============LICENSE_END=========================================================
19
20#################################################################
21# Global configuration defaults.
22#################################################################
23global:
24 nodePortPrefix: 302
25 nodePortPrefixExt: 304
Maciej Wereski7000a7c2021-12-16 12:24:06 +010026 centralizedLoggingEnabled: true
Jack Lucasd41dbdb2021-02-16 11:07:28 -050027
28#################################################################
29# Filebeat configuration defaults.
30#################################################################
31filebeatConfig:
32 logstashServiceName: log-ls
33 logstashPort: 5044
34
35#################################################################
Jack Lucasd41dbdb2021-02-16 11:07:28 -050036# Application configuration defaults.
37#################################################################
38# application image
sushant5365b14032023-04-13 11:42:59 +053039image: onap/org.onap.dcaegen2.analytics.tca-gen2.dcae-analytics-tca-web:1.4.0
Jack Lucasd41dbdb2021-02-16 11:07:28 -050040pullPolicy: Always
41
42# log directory where logging sidecar should look for log files
Maciej Wereski7000a7c2021-12-16 12:24:06 +010043# if path is set to null sidecar won't be deployed in spite of
44# global.centralizedLoggingEnabled setting.
45log:
46 path: /opt/logs/dcae-analytics-tca
47logConfigMapNamePrefix: '{{ include "common.fullname" . }}'
Jack Lucasd41dbdb2021-02-16 11:07:28 -050048
Jack Lucasd41dbdb2021-02-16 11:07:28 -050049secrets:
50 - uid: &aaiCredsUID aaicreds
51 type: basicAuth
52 login: '{{ .Values.aaiCreds.user }}'
53 password: '{{ .Values.aaiCreds.password }}'
54 passwordPolicy: required
55
56# dependencies
57readinessCheck:
58 wait_for:
rope2525a7fbee2022-07-25 20:00:36 +010059 - message-router
Jack Lucasd41dbdb2021-02-16 11:07:28 -050060
61# probe configuration
62readiness:
63 initialDelaySeconds: 10
64 periodSeconds: 30
65 path: /actuator/health
66 scheme: HTTP
67 port: 9091
68
69# service configuration
70service:
71 type: ClusterIP
72 name: dcae-tcagen2
73 ports:
74 - port: 9091
75 name: http
76
AndrewLambbd6ff6b2023-05-04 15:56:49 +010077serviceMesh:
78 authorizationPolicy:
79 authorizedPrincipals:
80 - serviceAccount: message-router-read
81
Jack Lucasec09fd52021-11-01 16:54:12 -040082# mongoDB overrides
83mongo:
84 nameOverride: dcae-mongo
85 config:
86 dbName: dcaecommondb
87 service:
88 name: dcae-mongohost
89 internalPort: 27017
90 nfsprovisionerPrefix: dcaemongo
91 sdnctlPrefix: tcagen2
92 persistence:
93 mountSubPath: dcae/mongo/data
94 enabled: true
95 disableNfsProvisioner: true
96
vv770de8c5c682021-04-15 12:21:36 -040097# Policy configuraiton properties
Vijay Venkatesh Kumar8c465172021-06-03 16:51:33 -040098# if enabled, policy-sync side car will be deployed
vv770de8c5c682021-04-15 12:21:36 -040099#dcaePolicySyncImage: onap/org.onap.dcaegen2.deployments.dcae-services-policy-sync:1.0.1
100#policies:
101# duration: 300
Vijay Venkatesh Kumar6259f502021-07-26 16:53:11 -0400102# policyRelease: "onap"
vv770de8c5c682021-04-15 12:21:36 -0400103# policyID: |
Vijay Venkatesh Kumar6259f502021-07-26 16:53:11 -0400104# '["onap.vfirewall.tca","onap.vdns.tca"]'
Vijay Venkatesh Kumar8eeeecd2021-09-13 17:02:05 -0400105
vv770de8c5c682021-04-15 12:21:36 -0400106
Jack Lucasd41dbdb2021-02-16 11:07:28 -0500107aaiCreds:
108 user: DCAE
109 password: DCAE
110
111credentials:
112- name: AAI_USERNAME
113 uid: *aaiCredsUID
114 key: login
115- name: AAI_PASSWORD
116 uid: *aaiCredsUID
117 key: password
118
119# initial application configuration
120applicationConfig:
121 service_calls: []
122 streams_publishes:
123 tca_handle_out:
124 dmaap_info:
125 topic_url: http://message-router:3904/events/unauthenticated.DCAE_CL_OUTPUT
126 type: message_router
127 streams_subscribes:
128 tca_handle_in:
129 dmaap_info:
130 topic_url: http://message-router:3904/events/unauthenticated.VES_MEASUREMENT_OUTPUT
131 type: message_router
132 spring.data.mongodb.uri: mongodb://dcae-mongohost/dcae-tcagen2
133 streams_subscribes.tca_handle_in.consumer_group: cg1
134 streams_subscribes.tca_handle_in.consumer_ids[0]: c0
135 streams_subscribes.tca_handle_in.consumer_ids[1]: c1
136 streams_subscribes.tca_handle_in.message_limit: 50000
137 streams_subscribes.tca_handle_in.polling.auto_adjusting.max: 60000
138 streams_subscribes.tca_handle_in.polling.auto_adjusting.min: 30000
139 streams_subscribes.tca_handle_in.polling.auto_adjusting.step_down: 30000
140 streams_subscribes.tca_handle_in.polling.auto_adjusting.step_up: 10000
141 streams_subscribes.tca_handle_in.polling.fixed_rate: 0
142 streams_subscribes.tca_handle_in.timeout: -1
143 tca.aai.enable_enrichment: true
144 tca.aai.generic_vnf_path: aai/v11/network/generic-vnfs/generic-vnf
145 tca.aai.node_query_path: aai/v11/search/nodes-query
146 tca.aai.password: ${AAI_PASSWORD}
rope2525a7fbee2022-07-25 20:00:36 +0100147 tca.aai.url: http://aai-internal:80
Jack Lucasd41dbdb2021-02-16 11:07:28 -0500148 tca.aai.username: ${AAI_USERNAME}
Vijay Venkatesh Kumar0e73b022022-09-13 12:37:13 -0400149 tca.policy: "[{\"domain\":\"measurementsForVfScaling\",\"violatedMetricsPerEventName\":[{\"eventName\":\"Mfvs_eNodeB_RANKPI\",\"controlLoopSchemaType\":\"VNF\",\"policyScope\":\"resource=vFirewall;type=configuration\",\"policyName\":\"configuration.dcae.microservice.tca.xml\",\"policyVersion\":\"v0.0.1\",\"thresholds\":[{\"closedLoopControlName\":\"CL-FRWL-LOW-TRAFFIC-SIG-d925ed73-8231-4d02-9545-db4e101f88f8\",\"closedLoopEventStatus\":\"ONSET\",\"version\":\"1.0.2\",\"fieldPath\":\"$.event.measurementsForVfScalingFields.vNicPerformanceArray[*].receivedBroadcastPacketsAccumulated\",\"thresholdValue\":4000,\"direction\":\"LESS_OR_EQUAL\",\"severity\":\"MAJOR\"},{\"closedLoopControlName\":\"CL-FRWL-HIGH-TRAFFIC-SIG-EA36FE84-9342-5E13-A656-EC5F21309A09\",\"closedLoopEventStatus\":\"ONSET\",\"version\":\"1.0.2\",\"fieldPath\":\"$.event.measurementsForVfScalingFields.vNicPerformanceArray[*].receivedBroadcastPacketsAccumulated\",\"thresholdValue\":20000,\"direction\":\"GREATER_OR_EQUAL\",\"severity\":\"CRITICAL\"}]},{\"eventName\":\"vLoadBalancer\",\"controlLoopSchemaType\":\"VNF\",\"policyScope\":\"resource=vLoadBalancer;type=configuration\",\"policyName\":\"configuration.dcae.microservice.tca.xml\",\"policyVersion\":\"v0.0.1\",\"thresholds\":[{\"closedLoopControlName\":\"CL-LBAL-LOW-TRAFFIC-SIG-FB480F95-A453-6F24-B767-FD703241AB1A\",\"closedLoopEventStatus\":\"ONSET\",\"version\":\"1.0.2\",\"fieldPath\":\"$.event.measurementsForVfScalingFields.vNicPerformanceArray[*].receivedBroadcastPacketsAccumulated\",\"thresholdValue\":500,\"direction\":\"LESS_OR_EQUAL\",\"severity\":\"MAJOR\"},{\"closedLoopControlName\":\"CL-LBAL-LOW-TRAFFIC-SIG-0C5920A6-B564-8035-C878-0E814352BC2B\",\"closedLoopEventStatus\":\"ONSET\",\"version\":\"1.0.2\",\"fieldPath\":\"$.event.measurementsForVfScalingFields.vNicPerformanceArray[*].receivedBroadcastPacketsAccumulated\",\"thresholdValue\":5000,\"direction\":\"GREATER_OR_EQUAL\",\"severity\":\"CRITICAL\"}]}]},{\"domain\":\"measurement\",\"metricsPerEventName\":[{\"eventName\":\"vFirewallBroadcastPackets\",\"controlLoopSchemaType\":\"VM\",\"policyScope\":\"DCAE\",\"policyName\":\"DCAE.Config_tca-hi-lo\",\"policyVersion\":\"v0.0.1\",\"thresholds\":[{\"closedLoopControlName\":\"ControlLoop-vFirewall-d0a1dfc6-94f5-4fd4-a5b5-4630b438850a\",\"version\":\"1.0.2\",\"fieldPath\":\"$.event.measurementFields.nicPerformanceArray[*].receivedTotalPacketsDelta\",\"thresholdValue\":300,\"direction\":\"LESS_OR_EQUAL\",\"severity\":\"MAJOR\",\"closedLoopEventStatus\":\"ABATED\"},{\"closedLoopControlName\":\"ControlLoop-vFirewall-d0a1dfc6-94f5-4fd4-a5b5-4630b438850a\",\"version\":\"1.0.2\",\"fieldPath\":\"$.event.measurementFields.nicPerformanceArray[*].receivedTotalPacketsDelta\",\"thresholdValue\":700,\"direction\":\"GREATER_OR_EQUAL\",\"severity\":\"CRITICAL\",\"closedLoopEventStatus\":\"ONSET\"}]},{\"eventName\":\"vLoadBalancer\",\"controlLoopSchemaType\":\"VM\",\"policyScope\":\"DCAE\",\"policyName\":\"DCAE.Config_tca-hi-lo\",\"policyVersion\":\"v0.0.1\",\"thresholds\":[{\"closedLoopControlName\":\"ControlLoop-vDNS-6f37f56d-a87d-4b85-b6a9-cc953cf779b3\",\"version\":\"1.0.2\",\"fieldPath\":\"$.event.measurementFields.nicPerformanceArray[*].receivedTotalPacketsDelta\",\"thresholdValue\":300,\"direction\":\"GREATER_OR_EQUAL\",\"severity\":\"CRITICAL\",\"closedLoopEventStatus\":\"ONSET\"}]},{\"eventName\":\"Measurement_vGMUX\",\"controlLoopSchemaType\":\"VNF\",\"policyScope\":\"DCAE\",\"policyName\":\"DCAE.Config_tca-hi-lo\",\"policyVersion\":\"v0.0.1\",\"thresholds\":[{\"closedLoopControlName\":\"ControlLoop-vCPE-48f0c2c3-a172-4192-9ae3-052274181b6e\",\"version\":\"1.0.2\",\"fieldPath\":\"$.event.measurementFields.additionalMeasurements[*].arrayOfFields[0].value\",\"thresholdValue\":0,\"direction\":\"EQUAL\",\"severity\":\"MAJOR\",\"closedLoopEventStatus\":\"ABATED\"},{\"closedLoopControlName\":\"ControlLoop-vCPE-48f0c2c3-a172-4192-9ae3-052274181b6e\",\"version\":\"1.0.2\",\"fieldPath\":\"$.event.measurementFields.additionalMeasurements[*].arrayOfFields[0].value\",\"thresholdValue\":0,\"direction\":\"GREATER\",\"severity\":\"CRITICAL\",\"closedLoopEventStatus\":\"ONSET\"}]}]}]"
Jack Lucasd41dbdb2021-02-16 11:07:28 -0500150 tca.processing_batch_size: 10000
151 tca.enable_abatement: true
152 tca.enable_ecomp_logging: true
153
rope2525a7fbee2022-07-25 20:00:36 +0100154applicationEnv:
155 #Temporary Dummy CBS Port Value until internal SDK library is updated
156 CONFIG_BINDING_SERVICE_SERVICE_PORT: '0000'
157
Jack Lucasd41dbdb2021-02-16 11:07:28 -0500158# Resource Limit flavor -By Default using small
159flavor: small
160# Segregation for Different environment (Small and Large)
161resources:
162 small:
163 limits:
Andreas Geissler47537432024-02-27 08:55:23 +0100164 cpu: "1"
165 memory: "1Gi"
Jack Lucasd41dbdb2021-02-16 11:07:28 -0500166 requests:
Andreas Geissler47537432024-02-27 08:55:23 +0100167 cpu: "0.5"
168 memory: "1Gi"
Jack Lucasd41dbdb2021-02-16 11:07:28 -0500169 large:
170 limits:
Andreas Geissler47537432024-02-27 08:55:23 +0100171 cpu: "2"
172 memory: "2Gi"
Jack Lucasd41dbdb2021-02-16 11:07:28 -0500173 requests:
Andreas Geissler47537432024-02-27 08:55:23 +0100174 cpu: "1"
175 memory: "2Gi"
Jack Lucasd41dbdb2021-02-16 11:07:28 -0500176 unlimited: {}
farida azmycb03ac72021-09-12 16:14:12 +0200177
178#Pods Service Account
179serviceAccount:
180 nameOverride: dcae-tcagen2
181 roles:
182 - read