jetersen thanks for checking.
I tried, without success, to disable ssl verification since this is the biggest breaking change.
For the record, here is my pipeline script:
pipeline {
agent {
docker {
image 'xxx'
}
}
environment {
VAULT_ENTRY = vault path: 'dd/try-me', key: 'ansible', engineVersion: "1"
} stages {
stage("Vault try me") {
steps {
ansiColor('xterm') {
sh '''
echo $VAULT_ENTRY
echo "test"
'''
}
}
}
}
post {
failure {
rocketSend emoji: ':jenkins:', rawMessage: true, message: "> :fire: [$JOB_NAME]($RUN_DISPLAY_URL) job #$BUILD_NUMBER *"+currentBuild.currentResult+"* :fire:"
}
}
}
I believe this is the same issue as
JENKINS-59836