adds test to check secret data

This commit is contained in:
Hyatt 2023-10-22 12:48:25 -05:00
parent 2456d6daa0
commit 32b3c3c43f
Signed by: nhyatt
GPG Key ID: C50D0BBB5BC40BEA

View File

@ -160,6 +160,25 @@ data:
}
}
stage ('Read Secret') {
steps {
container ('alpine') {
script {
def result = declarativeFunctions.createSecret(
kubeAuth: "k8s-dl-automation-access",
kubeURL: "https://k8s.test-chamber-13.lan:8043",
namespace: "dl-automation",
secret: k8sSecret,
secretID: "nordvpn.com.tcp.ovpn"
)
if result.length() == 0 {
throw new Exception("Secret is empty.")
}
}
}
}
}
stage ('Restart Pod') {
steps {
container ('alpine') {