format correction

This commit is contained in:
Hyatt 2022-04-01 21:19:33 -05:00
parent 169b391455
commit 9afa322d0b
Signed by: nhyatt
GPG Key ID: C50D0BBB5BC40BEA

View File

@ -78,10 +78,10 @@ pipeline {
apk add --no-cache sed apk add --no-cache sed
fi fi
""" """
}
openVPNConfig = sh( openVPNConfig = sh(
returnStdout: true, returnStdout: true,
script: """# Get OpenVPN Config script: """# Get OpenVPN Config
curl \ curl \
--silent \ --silent \
--location \ --location \
@ -102,14 +102,14 @@ curl \
| base64 -w 0 | base64 -w 0
""" """
) )
withCredentials( withCredentials(
[ [
string( string(
credentialsId: nordCreds, credentialsId: nordCreds,
variable: "NORD_CREDS", variable: "NORD_CREDS",
) )
] ]
) { ) {
k8sSecret = """apiVersion: v1 k8sSecret = """apiVersion: v1
kind: Secret kind: Secret
@ -120,6 +120,7 @@ data:
openvpn-credentials.txt: """ + NORD_CREDS + """ openvpn-credentials.txt: """ + NORD_CREDS + """
nordvpn.com.tcp.ovpn: """ + openVPNConfig + """ nordvpn.com.tcp.ovpn: """ + openVPNConfig + """
""" """
}
} }
} }
} }