corrects syntax

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

View File

@ -39,7 +39,7 @@ pipeline {
}
}
stage ('Prepare Vales') {
stage ('Prepare Values') {
steps {
container ('alpine') {
retry(3) {
@ -86,8 +86,6 @@ pipeline {
}
// get OpenVPN Configuration from NordVPN
retry(3) {
try {
openVPNConfig = sh(
returnStdout: true,
script: """# Get OpenVPN Config
@ -119,8 +117,9 @@ pipeline {
}
}
}
}
// Create K8S Secret
script {
withCredentials(
[
string(
@ -129,7 +128,6 @@ pipeline {
)
]
) {
k8sSecret = """apiVersion: v1
kind: Secret
metadata:
@ -143,9 +141,8 @@ data:
}
}
}
}
stage ('Create Secret') {
stage ('Update Secret') {
steps {
container ('alpine') {
script {