Disable the ROUTE_ADC_BACKUP Flag
-
Login to the MongoDB shell:
kubectl exec -it mongodb-0 -n avx -- mongo --authenticationDatabase admin -u admin -p `grep "mongo" ~/appviewx/.appviewx_configuration | cut -d "=" -f 2` appviewx -
Disable the routing flag:
db.getCollection('avx_app_metadata').updateOne( { "_id": "ROUTE_ADC_BACKUP" }, { $set: { "description": "Route ADC Backup adc-device-backup-bot pod", "subsystem": "adc", "value": "false" } }, { upsert: true } )
