From 9647e859ba708422f9114e7afcfd3a19d29dd7b8 Mon Sep 17 00:00:00 2001 From: nhyatt Date: Sun, 22 Oct 2023 10:15:20 -0500 Subject: [PATCH] corrects syntax (again) --- nordvpn-autoconfigure.jenkins | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/nordvpn-autoconfigure.jenkins b/nordvpn-autoconfigure.jenkins index 552dea4..343dd42 100644 --- a/nordvpn-autoconfigure.jenkins +++ b/nordvpn-autoconfigure.jenkins @@ -117,18 +117,17 @@ pipeline { } } } - } - // Create K8S Secret - withCredentials( - [ - string( - credentialsId: nordCreds, - variable: "NORD_CREDS", - ) - ] - ) { - k8sSecret = """apiVersion: v1 + // Create K8S Secret + withCredentials( + [ + string( + credentialsId: nordCreds, + variable: "NORD_CREDS", + ) + ] + ) { + k8sSecret = """apiVersion: v1 kind: Secret metadata: name: """ + kubeSecret + """ @@ -137,6 +136,7 @@ data: openvpn-credentials.txt: """ + NORD_CREDS + """ nordvpn.com.tcp.ovpn: """ + openVPNConfig + """ """ + } } } }