Compare commits

..

1 Commits

Author SHA1 Message Date
Dustin e6b26cc4cb ci: Add pipeline for Koji 2018-08-12 10:25:11 -05:00
1 changed files with 8 additions and 12 deletions

View File

@ -28,18 +28,14 @@ pipeline {
stage('Remount R/W') {
steps {
withCredentials([file(
credentialsId: 'vault-jenkins@pyrocufflink.blue',
variable: 'SUDO_PASS_FILE')]) {
ansiblePlaybook \
playbook: 'remount.yml',
limit: 'koji',
become: true,
vaultCredentialsId: 'ansible-vault',
extraVars: [
remount_state: 'rw',
],
}
ansiblePlaybook \
playbook: 'remount.yml',
limit: 'koji',
become: true,
vaultCredentialsId: 'ansible-vault',
extraVars: [
remount_state: 'rw',
],
}
}