Jack Lucas | d41dbdb | 2021-02-16 11:07:28 -0500 | [diff] [blame] | 1 | #============LICENSE_START======================================================== |
| 2 | # ================================================================================ |
| 3 | # Copyright (c) 2021 J. F. Lucas. All rights reserved. |
vv770d | e8c5c68 | 2021-04-15 12:21:36 -0400 | [diff] [blame] | 4 | # Copyright (c) 2021 AT&T Intellectual Property. All rights reserved. |
Jack Lucas | d41dbdb | 2021-02-16 11:07:28 -0500 | [diff] [blame] | 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 | |
| 26 | ################################################################# |
| 27 | # Filebeat configuration defaults. |
| 28 | ################################################################# |
| 29 | filebeatConfig: |
| 30 | logstashServiceName: log-ls |
| 31 | logstashPort: 5044 |
| 32 | |
| 33 | ################################################################# |
| 34 | # initContainer images. |
| 35 | ################################################################# |
| 36 | tlsImage: onap/org.onap.dcaegen2.deployments.tls-init-container:2.1.0 |
Jack Lucas | d263e69 | 2021-08-16 16:02:23 -0400 | [diff] [blame] | 37 | consulLoaderImage: onap/org.onap.dcaegen2.deployments.consul-loader-container:1.1.1 |
Jack Lucas | d41dbdb | 2021-02-16 11:07:28 -0500 | [diff] [blame] | 38 | |
vv770d | e8c5c68 | 2021-04-15 12:21:36 -0400 | [diff] [blame] | 39 | |
Jack Lucas | d41dbdb | 2021-02-16 11:07:28 -0500 | [diff] [blame] | 40 | ################################################################# |
| 41 | # Application configuration defaults. |
| 42 | ################################################################# |
| 43 | # application image |
Remigiusz Janeczek | e661a7d | 2021-09-08 11:09:56 +0200 | [diff] [blame] | 44 | image: onap/org.onap.dcaegen2.analytics.tca-gen2.dcae-analytics-tca-web:1.3.1 |
Jack Lucas | d41dbdb | 2021-02-16 11:07:28 -0500 | [diff] [blame] | 45 | pullPolicy: Always |
| 46 | |
| 47 | # log directory where logging sidecar should look for log files |
| 48 | # if absent, no sidecar will be deployed |
| 49 | logDirectory: /opt/logs/dcae-analytics-tca |
| 50 | |
| 51 | # directory where TLS certs should be stored |
| 52 | # if absent, no certs will be retrieved and stored |
| 53 | certDirectory: /etc/tca-gen2/ssl |
| 54 | |
| 55 | # TLS role -- set to true if microservice acts as server |
| 56 | # If true, an init container will retrieve a server cert |
| 57 | # and key from AAF and mount them in certDirectory. |
| 58 | tlsServer: true |
| 59 | |
| 60 | secrets: |
| 61 | - uid: &aaiCredsUID aaicreds |
| 62 | type: basicAuth |
| 63 | login: '{{ .Values.aaiCreds.user }}' |
| 64 | password: '{{ .Values.aaiCreds.password }}' |
| 65 | passwordPolicy: required |
| 66 | |
| 67 | # dependencies |
| 68 | readinessCheck: |
| 69 | wait_for: |
| 70 | - dcae-config-binding-service |
| 71 | - aaf-cm |
| 72 | |
| 73 | # probe configuration |
| 74 | readiness: |
| 75 | initialDelaySeconds: 10 |
| 76 | periodSeconds: 30 |
| 77 | path: /actuator/health |
| 78 | scheme: HTTP |
| 79 | port: 9091 |
| 80 | |
| 81 | # service configuration |
| 82 | service: |
| 83 | type: ClusterIP |
| 84 | name: dcae-tcagen2 |
| 85 | ports: |
| 86 | - port: 9091 |
| 87 | name: http |
| 88 | |
vv770d | e8c5c68 | 2021-04-15 12:21:36 -0400 | [diff] [blame] | 89 | # Policy configuraiton properties |
Vijay Venkatesh Kumar | 8c46517 | 2021-06-03 16:51:33 -0400 | [diff] [blame] | 90 | # if enabled, policy-sync side car will be deployed |
vv770d | e8c5c68 | 2021-04-15 12:21:36 -0400 | [diff] [blame] | 91 | #dcaePolicySyncImage: onap/org.onap.dcaegen2.deployments.dcae-services-policy-sync:1.0.1 |
| 92 | #policies: |
| 93 | # duration: 300 |
Vijay Venkatesh Kumar | 6259f50 | 2021-07-26 16:53:11 -0400 | [diff] [blame] | 94 | # policyRelease: "onap" |
vv770d | e8c5c68 | 2021-04-15 12:21:36 -0400 | [diff] [blame] | 95 | # policyID: | |
Vijay Venkatesh Kumar | 6259f50 | 2021-07-26 16:53:11 -0400 | [diff] [blame] | 96 | # '["onap.vfirewall.tca","onap.vdns.tca"]' |
Vijay Venkatesh Kumar | 8eeeecd | 2021-09-13 17:02:05 -0400 | [diff] [blame^] | 97 | |
vv770d | e8c5c68 | 2021-04-15 12:21:36 -0400 | [diff] [blame] | 98 | |
Jack Lucas | d41dbdb | 2021-02-16 11:07:28 -0500 | [diff] [blame] | 99 | aaiCreds: |
| 100 | user: DCAE |
| 101 | password: DCAE |
| 102 | |
| 103 | credentials: |
| 104 | - name: AAI_USERNAME |
| 105 | uid: *aaiCredsUID |
| 106 | key: login |
| 107 | - name: AAI_PASSWORD |
| 108 | uid: *aaiCredsUID |
| 109 | key: password |
| 110 | |
| 111 | # initial application configuration |
| 112 | applicationConfig: |
| 113 | service_calls: [] |
| 114 | streams_publishes: |
| 115 | tca_handle_out: |
| 116 | dmaap_info: |
| 117 | topic_url: http://message-router:3904/events/unauthenticated.DCAE_CL_OUTPUT |
| 118 | type: message_router |
| 119 | streams_subscribes: |
| 120 | tca_handle_in: |
| 121 | dmaap_info: |
| 122 | topic_url: http://message-router:3904/events/unauthenticated.VES_MEASUREMENT_OUTPUT |
| 123 | type: message_router |
| 124 | spring.data.mongodb.uri: mongodb://dcae-mongohost/dcae-tcagen2 |
| 125 | streams_subscribes.tca_handle_in.consumer_group: cg1 |
| 126 | streams_subscribes.tca_handle_in.consumer_ids[0]: c0 |
| 127 | streams_subscribes.tca_handle_in.consumer_ids[1]: c1 |
| 128 | streams_subscribes.tca_handle_in.message_limit: 50000 |
| 129 | streams_subscribes.tca_handle_in.polling.auto_adjusting.max: 60000 |
| 130 | streams_subscribes.tca_handle_in.polling.auto_adjusting.min: 30000 |
| 131 | streams_subscribes.tca_handle_in.polling.auto_adjusting.step_down: 30000 |
| 132 | streams_subscribes.tca_handle_in.polling.auto_adjusting.step_up: 10000 |
| 133 | streams_subscribes.tca_handle_in.polling.fixed_rate: 0 |
| 134 | streams_subscribes.tca_handle_in.timeout: -1 |
| 135 | tca.aai.enable_enrichment: true |
| 136 | tca.aai.generic_vnf_path: aai/v11/network/generic-vnfs/generic-vnf |
| 137 | tca.aai.node_query_path: aai/v11/search/nodes-query |
| 138 | tca.aai.password: ${AAI_PASSWORD} |
Remigiusz Janeczek | e661a7d | 2021-09-08 11:09:56 +0200 | [diff] [blame] | 139 | tca.aai.url: https://aai:8443 |
Jack Lucas | d41dbdb | 2021-02-16 11:07:28 -0500 | [diff] [blame] | 140 | tca.aai.username: ${AAI_USERNAME} |
| 141 | tca.policy: '{"domain":"measurementsForVfScaling","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.measurementsForVfScalingFields.vNicPerformanceArray[*].receivedTotalPacketsDelta","thresholdValue":300,"direction":"LESS_OR_EQUAL","severity":"MAJOR","closedLoopEventStatus":"ONSET"},{"closedLoopControlName":"ControlLoop-vFirewall-d0a1dfc6-94f5-4fd4-a5b5-4630b438850a","version":"1.0.2","fieldPath":"$.event.measurementsForVfScalingFields.vNicPerformanceArray[*].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.measurementsForVfScalingFields.vNicPerformanceArray[*].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.measurementsForVfScalingFields.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.measurementsForVfScalingFields.additionalMeasurements[*].arrayOfFields[0].value","thresholdValue":0,"direction":"GREATER","severity":"CRITICAL","closedLoopEventStatus":"ONSET"}]}]}' |
| 142 | tca.processing_batch_size: 10000 |
| 143 | tca.enable_abatement: true |
| 144 | tca.enable_ecomp_logging: true |
| 145 | |
| 146 | # Resource Limit flavor -By Default using small |
| 147 | flavor: small |
| 148 | # Segregation for Different environment (Small and Large) |
| 149 | resources: |
| 150 | small: |
| 151 | limits: |
| 152 | cpu: 2 |
| 153 | memory: 2Gi |
| 154 | requests: |
| 155 | cpu: 1 |
| 156 | memory: 1Gi |
| 157 | large: |
| 158 | limits: |
| 159 | cpu: 4 |
| 160 | memory: 4Gi |
| 161 | requests: |
| 162 | cpu: 2 |
| 163 | memory: 2Gi |
| 164 | unlimited: {} |