-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathquickstart.groovy
138 lines (122 loc) · 4.23 KB
/
quickstart.groovy
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
// SPDX-FileCopyrightText: 2023 Open Networking Foundation <info@opennetworking.org>
// SPDX-License-Identifier: LicenseRef-ONF-Member-Only-1.0
pipeline {
options {
timeout(time: 1, unit: 'HOURS')
}
agent {
label "${AgentLabel}"
}
stages{
stage('Configure OnRamp') {
steps {
sh """
cd $WORKSPACE
git clone --recursive https://github.com/opennetworkinglab/aether-onramp.git
cd aether-onramp
MYIP=\$(hostname -I | awk '{print \$1}')
echo "MY IP is: " \$MYIP
MYIFC=\$(ip route get 8.8.8.8| awk '{print \$5}'|awk /./)
echo "MY IFC is: " \$MYIFC
cat > hosts.ini << EOF
[all]
node1 ansible_host=\$MYIP ansible_user=ubuntu ansible_ssh_private_key_file=/home/ubuntu/aether-qa.pem ansible_sudo_pass=ubuntu
[master_nodes]
node1
[worker_nodes]
#node2
[gnbsim_nodes]
node1
EOF
sudo cp vars/main-quickstart.yml vars/main.yml
sudo sed -i "s/10.76.28.113/\$MYIP/" vars/main.yml
sudo sed -i "s/ens18/\$MYIFC/g" vars/main.yml
make aether-pingall
"""
}
}
stage('Install Aether') {
steps {
sh """
cd $WORKSPACE/aether-onramp
make aether-k8s-install
make aether-5gc-install
make aether-gnbsim-install
kubectl get pods -n aether-5gc
docker ps
"""
}
}
stage('Run gNBsim'){
steps {
retry(2) {
sh """
cd $WORKSPACE/aether-onramp
sleep 60
make aether-gnbsim-run
docker exec gnbsim-1 cat summary.log
"""
}
}
}
stage ('Validate Results'){
steps {
catchError(message:'gNBsim Validation fails', buildResult:'FAILURE', stageResult:'FAILURE')
{
sh """
# weaker validation test
docker exec gnbsim-1 cat summary.log | grep "Ue's Passed" | grep -v "Passed: 0"
"""
}
}
}
stage ('Retrieve Logs'){
steps {
sh '''
mkdir $WORKSPACE/logs
cd $WORKSPACE/logs
logfile=\$(docker exec gnbsim-1 ls | grep "gnbsim1-.*.log")
echo "${logfile}"
docker cp gnbsim-1:/gnbsim/${logfile} ${logfile}
AMF_POD_NAME=\$(kubectl get pods -n aether-5gc | grep amf | awk 'NR==1{print \$1}')
echo "${AMF_POD_NAME}"
kubectl logs $AMF_POD_NAME -n aether-5gc > quickstart_amf.log
WEBUI_POD_NAME=\$(kubectl get pods -n aether-5gc | grep webui | awk 'NR==1{print \$1}')
echo "${WEBUI_POD_NAME}"
kubectl logs $WEBUI_POD_NAME -n aether-5gc > quickstart_webui.log
UDR_POD_NAME=\$(kubectl get pods -n aether-5gc | grep udr | awk 'NR==1{print \$1}')
echo "${UDR_POD_NAME}"
kubectl logs $UDR_POD_NAME -n aether-5gc > quickstart_udr.log
UDM_POD_NAME=\$(kubectl get pods -n aether-5gc | grep udm | awk 'NR==1{print \$1}')
echo "${UDM_POD_NAME}"
kubectl logs $UDM_POD_NAME -n aether-5gc > quickstart_udm.log
AUSF_POD_NAME=\$(kubectl get pods -n aether-5gc | grep ausf | awk 'NR==1{print \$1}')
echo "${AUSF_POD_NAME}"
kubectl logs $AUSF_POD_NAME -n aether-5gc > quickstart_ausf.log
SMF_POD_NAME=\$(kubectl get pods -n aether-5gc | grep smf | awk 'NR==1{print \$1}')
echo "${SMF_POD_NAME}"
kubectl logs $SMF_POD_NAME -n aether-5gc > quickstart_smf.log
'''
}
}
stage("Archive Artifacts"){
steps {
archiveArtifacts allowEmptyArchive: true, artifacts: "**/logs/*.log", followSymlinks: false
}
}
}
post {
always {
sh """
cd $WORKSPACE/aether-onramp
make gnbsim-uninstall
make 5gc-uninstall
make k8s-uninstall
"""
}
// triggered when red sign
failure {
slackSend color: "danger", message: "FAILED ${env.JOB_NAME} ${env.BUILD_NUMBER} ${env.BUILD_URL}"
}
}
}