Skip to content

Commit

Permalink
Merge pull request #301 from cultuurnet/feature/III-6197
Browse files Browse the repository at this point in the history
Force deploying on Jenkins agent in new VPC to allow DNS resolution
  • Loading branch information
paulherbosch authored Aug 8, 2024
2 parents 626d46d + 2817af5 commit 13b7109
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ pipeline {
}

stage('Deploy to acceptance') {
agent any
agent { label 'ubuntu && 20.04' }
options { skipDefaultCheckout() }
environment {
APPLICATION_ENVIRONMENT = 'acceptance'
Expand All @@ -90,7 +90,7 @@ pipeline {

stage('Deploy to testing') {
input { message "Deploy to Testing?" }
agent any
agent { label 'ubuntu && 20.04' }
options { skipDefaultCheckout() }
environment {
APPLICATION_ENVIRONMENT = 'testing'
Expand Down Expand Up @@ -126,7 +126,7 @@ pipeline {

stage('Deploy to production') {
input { message "Deploy to Production?" }
agent any
agent { label 'ubuntu && 20.04' }
options { skipDefaultCheckout() }
environment {
APPLICATION_ENVIRONMENT = 'production'
Expand Down

0 comments on commit 13b7109

Please sign in to comment.