corrects syntax
This commit is contained in:
parent
67b3595479
commit
c0018f3e49
@ -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 {
|
||||
|
Reference in New Issue
Block a user