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()
// jenkins secrets
nordCreds = "nordvpn-login-creds"
// kubernetes configuration
kubeNamespace = "dl-automation"
kubeSecret = "openvpn"
}
}
}
stage ('Prepare Vales') {
steps {
container ('alpine') {
retry(3) {
try {
// list of urls that return different nordVPN servers
def nordURLs = [
// canada
@ -60,16 +67,10 @@ pipeline {
// 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\\]\\}",
]
// randomly select one from the list
nordURL = nordURLs[Math.abs(new Random().nextInt() % [8])]
}
}
}
stage ('Prepare Container') {
steps {
container ('alpine') {
// install required components
script {
sh """
if [ ! -f "/usr/bin/curl" ] || [ ! -x "/usr/bin/curl" ]; then
@ -82,13 +83,15 @@ pipeline {
apk add --no-cache sed
fi
"""
}
// get OpenVPN Configuration from NordVPN
retry(3) {
try {
openVPNConfig = sh(
returnStdout: true,
script: """# Get OpenVPN Config
curl \
curl \
--silent \
--location \
--fail \
@ -106,15 +109,17 @@ curl \
--regexp-extended \
--expression='s/auth-user-pass/auth-user-pass \\/etc\\/openvpn\\/client\\/openvpn-credentials.txt/' \
| base64 -w 0
"""
"""
)
} catch(e) {
if (openVPNConfig == "") {
printf("nordURL: %s", nordURL)
if (openVPNConfig.length() == 0 || openVPNConfig == "") {
printf("Bad nordURL: %s", nordURL)
throw e
}
}
}
}
}
withCredentials(
[