Qa FreeIPA CA certificate generation

This commit is contained in:
2025-08-14 23:50:01 +03:00
parent ce83125591
commit 18a1e94100
7 changed files with 135 additions and 246 deletions

19
Jenkinsfile vendored
View File

@@ -33,25 +33,6 @@ pipeline {
}
}
}
stage('Save certs') {
when {
expression {
return params.rproxy_install
}
}
steps {
script {
withCredentials([
file(credentialsId: "ROOTCA_CERT", variable: "rootca"),
file(credentialsId: "ROOTCA_KEY", variable: "rootca_key")
]) {
sh(script: "cp ${rootca} roles/gitlab/files/RootCA.crt", returnStdout: false)
sh(script: "cp ${rootca_key} roles/gitlab/files/RootCA.key", returnStdout: false)
sh(script: "chmod 700 roles/patroni/files/RootCA*", returnStdout: false)
}
}
}
}
stage('Prepare inventory') {
steps {
script {