Files
jenkins-pipelines/jobs-dsl/jobs/Automation/DevOps/vault_policies_and_roles_update.groovy
Rustam Tagaev 2eac82a73c [DO-502] add_vault_restore_policy (!42)
Co-authored-by: Rustam Tagaev <rustam.tagaev@avroid.tech>
Reviewed-on: https://git.avroid.tech/DevOps/jenkins-pipelines/pulls/42
Reviewed-by: Denis Patrakeev <denis.patrakeev@avroid.team>
Reviewed-by: Aleksandr Vodyanov <aleksandr.vodyanov@avroid.team>
2024-11-07 13:04:14 +03:00

26 lines
666 B
Groovy

pipelineJob('Automation/DevOps/vault-policies-and-roles-update') {
logRotator {
numToKeep(10)
artifactNumToKeep(10)
}
properties {
disableConcurrentBuilds()
}
definition {
cpsScm {
scm {
git {
remote {
url("${JENKINS_GIT_REPOSITORY_URL}/DevOps/jenkins-pipelines.git")
credentials("${JENKINS_GIT_CREDENTIALS_HTTP}")
}
branch('master')
}
}
scriptPath('pipelines/Automation/DevOps/vault-policies-and-roles-update.groovy')
}
}
}