corrects syntax
This commit is contained in:
parent
67b3595479
commit
c0018f3e49
@ -39,7 +39,7 @@ pipeline {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
stage ('Prepare Vales') {
|
stage ('Prepare Values') {
|
||||||
steps {
|
steps {
|
||||||
container ('alpine') {
|
container ('alpine') {
|
||||||
retry(3) {
|
retry(3) {
|
||||||
@ -86,8 +86,6 @@ pipeline {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// get OpenVPN Configuration from NordVPN
|
// get OpenVPN Configuration from NordVPN
|
||||||
retry(3) {
|
|
||||||
try {
|
|
||||||
openVPNConfig = sh(
|
openVPNConfig = sh(
|
||||||
returnStdout: true,
|
returnStdout: true,
|
||||||
script: """# Get OpenVPN Config
|
script: """# Get OpenVPN Config
|
||||||
@ -119,8 +117,9 @@ pipeline {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
|
// Create K8S Secret
|
||||||
|
script {
|
||||||
withCredentials(
|
withCredentials(
|
||||||
[
|
[
|
||||||
string(
|
string(
|
||||||
@ -129,7 +128,6 @@ pipeline {
|
|||||||
)
|
)
|
||||||
]
|
]
|
||||||
) {
|
) {
|
||||||
|
|
||||||
k8sSecret = """apiVersion: v1
|
k8sSecret = """apiVersion: v1
|
||||||
kind: Secret
|
kind: Secret
|
||||||
metadata:
|
metadata:
|
||||||
@ -143,9 +141,8 @@ data:
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
stage ('Create Secret') {
|
stage ('Update Secret') {
|
||||||
steps {
|
steps {
|
||||||
container ('alpine') {
|
container ('alpine') {
|
||||||
script {
|
script {
|
||||||
|
Reference in New Issue
Block a user