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 |
Maciej Wereski | 7000a7c | 2021-12-16 12:24:06 +0100 | [diff] [blame] | 25 | centralizedLoggingEnabled: true |
Jack Lucas | d41dbdb | 2021-02-16 11:07:28 -0500 | [diff] [blame] | 26 | |
| 27 | ################################################################# |
| 28 | # Filebeat configuration defaults. |
| 29 | ################################################################# |
| 30 | filebeatConfig: |
| 31 | logstashServiceName: log-ls |
| 32 | logstashPort: 5044 |
| 33 | |
| 34 | ################################################################# |
| 35 | # initContainer images. |
| 36 | ################################################################# |
| 37 | tlsImage: onap/org.onap.dcaegen2.deployments.tls-init-container:2.1.0 |
Jack Lucas | d263e69 | 2021-08-16 16:02:23 -0400 | [diff] [blame] | 38 | consulLoaderImage: onap/org.onap.dcaegen2.deployments.consul-loader-container:1.1.1 |
Jack Lucas | d41dbdb | 2021-02-16 11:07:28 -0500 | [diff] [blame] | 39 | |
vv770d | e8c5c68 | 2021-04-15 12:21:36 -0400 | [diff] [blame] | 40 | |
Jack Lucas | d41dbdb | 2021-02-16 11:07:28 -0500 | [diff] [blame] | 41 | ################################################################# |
| 42 | # Application configuration defaults. |
| 43 | ################################################################# |
| 44 | # application image |
Remigiusz Janeczek | e661a7d | 2021-09-08 11:09:56 +0200 | [diff] [blame] | 45 | 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] | 46 | pullPolicy: Always |
| 47 | |
| 48 | # log directory where logging sidecar should look for log files |
Maciej Wereski | 7000a7c | 2021-12-16 12:24:06 +0100 | [diff] [blame] | 49 | # if path is set to null sidecar won't be deployed in spite of |
| 50 | # global.centralizedLoggingEnabled setting. |
| 51 | log: |
| 52 | path: /opt/logs/dcae-analytics-tca |
| 53 | logConfigMapNamePrefix: '{{ include "common.fullname" . }}' |
Jack Lucas | d41dbdb | 2021-02-16 11:07:28 -0500 | [diff] [blame] | 54 | |
| 55 | # directory where TLS certs should be stored |
| 56 | # if absent, no certs will be retrieved and stored |
| 57 | certDirectory: /etc/tca-gen2/ssl |
| 58 | |
| 59 | # TLS role -- set to true if microservice acts as server |
| 60 | # If true, an init container will retrieve a server cert |
| 61 | # and key from AAF and mount them in certDirectory. |
| 62 | tlsServer: true |
| 63 | |
| 64 | secrets: |
| 65 | - uid: &aaiCredsUID aaicreds |
| 66 | type: basicAuth |
| 67 | login: '{{ .Values.aaiCreds.user }}' |
| 68 | password: '{{ .Values.aaiCreds.password }}' |
| 69 | passwordPolicy: required |
| 70 | |
| 71 | # dependencies |
| 72 | readinessCheck: |
| 73 | wait_for: |
| 74 | - dcae-config-binding-service |
| 75 | - aaf-cm |
| 76 | |
| 77 | # probe configuration |
| 78 | readiness: |
| 79 | initialDelaySeconds: 10 |
| 80 | periodSeconds: 30 |
| 81 | path: /actuator/health |
| 82 | scheme: HTTP |
| 83 | port: 9091 |
| 84 | |
| 85 | # service configuration |
| 86 | service: |
| 87 | type: ClusterIP |
| 88 | name: dcae-tcagen2 |
| 89 | ports: |
| 90 | - port: 9091 |
| 91 | name: http |
| 92 | |
Jack Lucas | ec09fd5 | 2021-11-01 16:54:12 -0400 | [diff] [blame] | 93 | # mongoDB overrides |
| 94 | mongo: |
| 95 | nameOverride: dcae-mongo |
| 96 | config: |
| 97 | dbName: dcaecommondb |
| 98 | service: |
| 99 | name: dcae-mongohost |
| 100 | internalPort: 27017 |
| 101 | nfsprovisionerPrefix: dcaemongo |
| 102 | sdnctlPrefix: tcagen2 |
| 103 | persistence: |
| 104 | mountSubPath: dcae/mongo/data |
| 105 | enabled: true |
| 106 | disableNfsProvisioner: true |
| 107 | |
vv770d | e8c5c68 | 2021-04-15 12:21:36 -0400 | [diff] [blame] | 108 | # Policy configuraiton properties |
Vijay Venkatesh Kumar | 8c46517 | 2021-06-03 16:51:33 -0400 | [diff] [blame] | 109 | # if enabled, policy-sync side car will be deployed |
vv770d | e8c5c68 | 2021-04-15 12:21:36 -0400 | [diff] [blame] | 110 | #dcaePolicySyncImage: onap/org.onap.dcaegen2.deployments.dcae-services-policy-sync:1.0.1 |
| 111 | #policies: |
| 112 | # duration: 300 |
Vijay Venkatesh Kumar | 6259f50 | 2021-07-26 16:53:11 -0400 | [diff] [blame] | 113 | # policyRelease: "onap" |
vv770d | e8c5c68 | 2021-04-15 12:21:36 -0400 | [diff] [blame] | 114 | # policyID: | |
Vijay Venkatesh Kumar | 6259f50 | 2021-07-26 16:53:11 -0400 | [diff] [blame] | 115 | # '["onap.vfirewall.tca","onap.vdns.tca"]' |
Vijay Venkatesh Kumar | 8eeeecd | 2021-09-13 17:02:05 -0400 | [diff] [blame] | 116 | |
vv770d | e8c5c68 | 2021-04-15 12:21:36 -0400 | [diff] [blame] | 117 | |
Jack Lucas | d41dbdb | 2021-02-16 11:07:28 -0500 | [diff] [blame] | 118 | aaiCreds: |
| 119 | user: DCAE |
| 120 | password: DCAE |
| 121 | |
| 122 | credentials: |
| 123 | - name: AAI_USERNAME |
| 124 | uid: *aaiCredsUID |
| 125 | key: login |
| 126 | - name: AAI_PASSWORD |
| 127 | uid: *aaiCredsUID |
| 128 | key: password |
| 129 | |
| 130 | # initial application configuration |
| 131 | applicationConfig: |
| 132 | service_calls: [] |
| 133 | streams_publishes: |
| 134 | tca_handle_out: |
| 135 | dmaap_info: |
| 136 | topic_url: http://message-router:3904/events/unauthenticated.DCAE_CL_OUTPUT |
| 137 | type: message_router |
| 138 | streams_subscribes: |
| 139 | tca_handle_in: |
| 140 | dmaap_info: |
| 141 | topic_url: http://message-router:3904/events/unauthenticated.VES_MEASUREMENT_OUTPUT |
| 142 | type: message_router |
| 143 | spring.data.mongodb.uri: mongodb://dcae-mongohost/dcae-tcagen2 |
| 144 | streams_subscribes.tca_handle_in.consumer_group: cg1 |
| 145 | streams_subscribes.tca_handle_in.consumer_ids[0]: c0 |
| 146 | streams_subscribes.tca_handle_in.consumer_ids[1]: c1 |
| 147 | streams_subscribes.tca_handle_in.message_limit: 50000 |
| 148 | streams_subscribes.tca_handle_in.polling.auto_adjusting.max: 60000 |
| 149 | streams_subscribes.tca_handle_in.polling.auto_adjusting.min: 30000 |
| 150 | streams_subscribes.tca_handle_in.polling.auto_adjusting.step_down: 30000 |
| 151 | streams_subscribes.tca_handle_in.polling.auto_adjusting.step_up: 10000 |
| 152 | streams_subscribes.tca_handle_in.polling.fixed_rate: 0 |
| 153 | streams_subscribes.tca_handle_in.timeout: -1 |
| 154 | tca.aai.enable_enrichment: true |
| 155 | tca.aai.generic_vnf_path: aai/v11/network/generic-vnfs/generic-vnf |
| 156 | tca.aai.node_query_path: aai/v11/search/nodes-query |
| 157 | tca.aai.password: ${AAI_PASSWORD} |
Remigiusz Janeczek | e661a7d | 2021-09-08 11:09:56 +0200 | [diff] [blame] | 158 | tca.aai.url: https://aai:8443 |
Jack Lucas | d41dbdb | 2021-02-16 11:07:28 -0500 | [diff] [blame] | 159 | tca.aai.username: ${AAI_USERNAME} |
| 160 | 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"}]}]}' |
| 161 | tca.processing_batch_size: 10000 |
| 162 | tca.enable_abatement: true |
| 163 | tca.enable_ecomp_logging: true |
| 164 | |
| 165 | # Resource Limit flavor -By Default using small |
| 166 | flavor: small |
| 167 | # Segregation for Different environment (Small and Large) |
| 168 | resources: |
| 169 | small: |
| 170 | limits: |
| 171 | cpu: 2 |
| 172 | memory: 2Gi |
| 173 | requests: |
| 174 | cpu: 1 |
| 175 | memory: 1Gi |
| 176 | large: |
| 177 | limits: |
| 178 | cpu: 4 |
| 179 | memory: 4Gi |
| 180 | requests: |
| 181 | cpu: 2 |
| 182 | memory: 2Gi |
| 183 | unlimited: {} |
farida azmy | cb03ac7 | 2021-09-12 16:14:12 +0200 | [diff] [blame] | 184 | |
| 185 | #Pods Service Account |
| 186 | serviceAccount: |
| 187 | nameOverride: dcae-tcagen2 |
| 188 | roles: |
| 189 | - read |