adds retry

This commit is contained in:
Hyatt 2023-10-22 09:43:46 -05:00
parent c2d814a05b
commit 67b3595479
Signed by: nhyatt
GPG Key ID: C50D0BBB5BC40BEA

View File

@ -32,11 +32,18 @@ pipeline {
workspace = pwd() workspace = pwd()
// jenkins secrets // jenkins secrets
nordCreds = "nordvpn-login-creds" nordCreds = "nordvpn-login-creds"
// kubernetes configuration // kubernetes configuration
kubeNamespace = "dl-automation" kubeNamespace = "dl-automation"
kubeSecret = "openvpn" kubeSecret = "openvpn"
}
}
}
stage ('Prepare Vales') {
steps {
container ('alpine') {
retry(3) {
try {
// list of urls that return different nordVPN servers // list of urls that return different nordVPN servers
def nordURLs = [ def nordURLs = [
// canada // canada
@ -60,16 +67,10 @@ pipeline {
// united kingdom // united kingdom
"https://nordvpn.com/wp-admin/admin-ajax.php?action=servers_recommendations&filters=\\{%22country_id%22:38,%22servers_groups%22:\\[15\\],%22servers_technologies%22:\\[5\\]\\}", "https://nordvpn.com/wp-admin/admin-ajax.php?action=servers_recommendations&filters=\\{%22country_id%22:38,%22servers_groups%22:\\[15\\],%22servers_technologies%22:\\[5\\]\\}",
] ]
// randomly select one from the list // randomly select one from the list
nordURL = nordURLs[Math.abs(new Random().nextInt() % [8])] nordURL = nordURLs[Math.abs(new Random().nextInt() % [8])]
}
}
}
stage ('Prepare Container') { // install required components
steps {
container ('alpine') {
script { script {
sh """ sh """
if [ ! -f "/usr/bin/curl" ] || [ ! -x "/usr/bin/curl" ]; then if [ ! -f "/usr/bin/curl" ] || [ ! -x "/usr/bin/curl" ]; then
@ -82,7 +83,9 @@ pipeline {
apk add --no-cache sed apk add --no-cache sed
fi fi
""" """
}
// get OpenVPN Configuration from NordVPN
retry(3) { retry(3) {
try { try {
openVPNConfig = sh( openVPNConfig = sh(
@ -109,12 +112,14 @@ curl \
""" """
) )
} catch(e) { } catch(e) {
if (openVPNConfig == "") { if (openVPNConfig.length() == 0 || openVPNConfig == "") {
printf("nordURL: %s", nordURL) printf("Bad nordURL: %s", nordURL)
throw e throw e
} }
} }
} }
}
}
withCredentials( withCredentials(
[ [