-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathoai.groovy
165 lines (149 loc) · 5.1 KB
/
oai.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
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
// SPDX-FileCopyrightText: 2023 Open Networking Foundation <info@opennetworking.org>
// SPDX-License-Identifier: LicenseRef-ONF-Member-Only-1.0
// oai.groovy
pipeline {
options {
timeout(time: 1, unit: 'HOURS')
}
agent {
label "${AgentLabel}"
}
environment {
PEM_PATH = "/home/ubuntu/aether-qa.pem"
VENV_PATH = "/home/ubuntu/ubuntu_venv"
}
stages{
stage('Configure OnRamp') {
steps {
withCredentials([sshUserPrivateKey(credentialsId: 'aether-qa',
keyFileVariable: 'aether_qa', usernameVariable: 'aether_qa_user')]) {
sh '''
if [[ -f $VENV_PATH/bin/activate ]]; then
source $VENV_PATH/bin/activate
fi
cp -p "$aether_qa" "$PEM_PATH"
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=$PEM_PATH ansible_sudo_pass=ubuntu
[master_nodes]
node1
[worker_nodes]
#node2
[oai_nodes]
node1
EOF
sudo cp vars/main-oai.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 """
if [[ -f $VENV_PATH/bin/activate ]]; then
source $VENV_PATH/bin/activate
fi
cd $WORKSPACE/aether-onramp
make k8s-install
make 5gc-install
make oai-gnb-install
kubectl get pods -n aether-5gc
"""
}
}
stage('Run Emulated UE'){
steps {
retry(2) {
sh """
if [[ -f $VENV_PATH/bin/activate ]]; then
source $VENV_PATH/bin/activate
fi
cd $WORKSPACE/aether-onramp
sleep 60
make oai-uesim-start
docker ps
"""
}
}
}
stage ('Validate Results'){
steps {
catchError(message:'UEsim Validation fails', buildResult:'FAILURE', stageResult:'FAILURE')
{
sh """
if [[ -f $VENV_PATH/bin/activate ]]; then
source $VENV_PATH/bin/activate
fi
cd $WORKSPACE
docker exec rfsim5g-oai-nr-ue ping -c 2 -I oaitun_ue1 192.168.250.1 > UEsim.log
grep "0% packet loss" UEsim.log
"""
}
}
}
stage ('Retrieve Logs'){
steps {
sh '''
if [[ -f $VENV_PATH/bin/activate ]]; then
source $VENV_PATH/bin/activate
fi
cd $WORKSPACE
mkdir logs
cp UEsim.log logs
cd logs
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 > oai_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 > oai_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 > oai_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 > oai_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 > oai_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 > oai_smf.log
'''
}
}
stage("Archive Artifacts"){
steps {
archiveArtifacts allowEmptyArchive: true, artifacts: "**/logs/*.log", followSymlinks: false
}
}
}
post {
always {
sh """
if [[ -f $VENV_PATH/bin/activate ]]; then
source $VENV_PATH/bin/activate
fi
cd $WORKSPACE/aether-onramp
make oai-uesim-stop
make oai-gnb-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}"
}
}
}