import_certs #18

Merged
mpavlov merged 8 commits from import_certs into dev 2024-09-29 15:26:37 +03:00
Showing only changes of commit bb52e2ca85 - Show all commits

5
Jenkinsfile vendored
View File

@@ -24,14 +24,15 @@ pipeline {
}
}
steps {
def ask_for_certs = input message: 'Upload RootCA certificate and key', parameters: [file(name: 'rootca'), file(name: 'rootca_key')]
script {
def ask_for_certs = input message: 'Upload RootCA certificate and key', parameters: [file(name: 'rootca'), file(name: 'rootca_key')]
}
withFileParameter('rootca') {
sh 'mv ${rootca} roles/rproxy/files/RootCA.crt'
}
withFileParameter('rootca_key') {
sh 'mv ${rootca_key} roles/rproxy/files/RootCA.key'
}
ask_for_certs.delete()
}
}
stage('Install Rproxy') {