Adding radius pcap and necessary images
Change-Id: I8e20b36bf8108311e22418c4207278bf0293b935
diff --git a/jjb/pipeline/voltha-scale-test.groovy b/jjb/pipeline/voltha-scale-test.groovy
index a3f73d2..95a5b09 100644
--- a/jjb/pipeline/voltha-scale-test.groovy
+++ b/jjb/pipeline/voltha-scale-test.groovy
@@ -312,6 +312,11 @@
export BBSIM=$(kubectl get pods -l app=bbsim -o name)
_TAG=bbsim-tcpdump kubectl exec $BBSIM -- tcpdump -nei nni -w out.pcap&
+
+ export RADIUS=$(kubectl get pods -l app=radius -o name)
+ kubectl exec $RADIUS -- apt-get update
+ kubectl exec $RADIUS -- apt-get install -y tcpdump
+ _TAG=radius-tcpdump kubectl exec $RADIUS -- tcpdump -w out.pcap&
fi
'''
}
@@ -438,6 +443,9 @@
export BBSIM=$(kubectl get pods -l app=bbsim | awk 'NR==2{print $1}') || true
kubectl cp $BBSIM:out.pcap $LOG_FOLDER/bbsim.pcap || true
+
+ export RADIUS=$(kubectl get pods -l app=radius | awk 'NR==2{print $1}') || true
+ kubectl cp $RADIUS:out.pcap $LOG_FOLDER/radius.pcap || true
fi
cd voltha-system-tests