Sha256: 477961e23a225ec418998c823046655ddd57f769120ffcb9ca3d154c3adfd2e0

Contents?: true

Size: 404 Bytes

Versions: 1

Compression:

Stored size: 404 Bytes

Contents

#!/usr/bin/env groovy
env.dockerTag = env.BUILD_TAG.toLowerCase()

properties([pipelineTriggers([cron('H 23 * * *')])])

stage("apply_restrictions"){
  node(){
    withCredentials([usernamePassword( credentialsId: 'vault_jenkins_cred_ansible_api_deploy_vault_password',
          usernameVariable: 'UNUSED', passwordVariable: 'VP')]) {
      checkout scm
        sh "make apply_restrictions"
    }
  }
}

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
api_deploy-0.1.0 Jenkinsfile