[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>
This commit is contained in:
Rustam Tagaev
2024-11-07 13:04:14 +03:00
parent 321dc6dfc1
commit 2eac82a73c
3 changed files with 117 additions and 3 deletions

View File

@@ -0,0 +1,25 @@
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')
}
}
}