ssl_repo #20

Merged
mpavlov merged 21 commits from ssl_repo into dev 2024-10-03 22:02:34 +03:00
2 changed files with 22 additions and 13 deletions
Showing only changes of commit 4c76778371 - Show all commits

4
Jenkinsfile vendored
View File

@@ -26,8 +26,8 @@ pipeline {
steps {
script {
env.AskCerts = input message: 'Upload RootCA certificate and key', parameters: [base64File(name: 'rootca'), base64File(name: 'rootca_key')]
def rootca = AskCerts['rootca']
sh 'echo ${rootca} | base64 -d > roles/rproxy/files/RootCA.crt'
env.RootCA = AskCerts['rootca']
sh 'echo ${RootCA} | base64 -d > roles/rproxy/files/RootCA.crt'
sh 'cat roles/rproxy/files/RootCA.crt'
// def rootca_key = AskCerts['rootca_key']