-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsdran.groovy
153 lines (138 loc) · 5.11 KB
/
sdran.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
// SPDX-FileCopyrightText: 2023 Open Networking Foundation <info@opennetworking.org>
// SPDX-License-Identifier: LicenseRef-ONF-Member-Only-1.0
// sdran.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"
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
[gnbsim_nodes]
node1
EOF
sudo cp vars/main-sdran.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 sdran-install
kubectl get pods -n aether-5gc
kubectl get pods -n sdran
"""
}
}
stage ('Validate Results'){
steps {
catchError(message:'RANSIM Validation fails', buildResult:'FAILURE', stageResult:'FAILURE')
{
sh """
if [[ -f $VENV_PATH/bin/activate ]]; then
source $VENV_PATH/bin/activate
fi
cd $WORKSPACE
echo "Give the simulator a chance to run (ideally, playbook should loop until done)"
sleep 60
kubectl exec -i deployment/onos-cli -n sdran -- onos kpimon list metrics --no-headers > ransim.log
kubectl exec -i deployment/onos-cli -n sdran -- onos ransim get ueCount >> ransim.log
kubectl exec -i deployment/onos-cli -n sdran -- onos ransim get cells --no-headers >> ransim.log
kubectl exec -i deployment/onos-cli -n sdran -- onos topo get entity e2cell >> ransim.log
cat ransim.log
"""
}
}
}
stage ('Retrieve Logs'){
steps {
sh '''
if [[ -f $VENV_PATH/bin/activate ]]; then
source $VENV_PATH/bin/activate
fi
cd $WORKSPACE
mkdir logs
cp ransim.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 > sdran_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 > sdran_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 > sdran_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 > sdran_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 > sdran_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 > sdran_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 sdran-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}"
}
}
}