Fix QA Auto DevOps push after adding cluster

This is necessary because otherwise the push will trigger a pipeline
that does not include a production deployment job.
This commit is contained in:
Dylan Griffith 2019-03-06 07:49:23 +11:00
parent a592a78072
commit e8df3ab8cd
1 changed files with 9 additions and 9 deletions

View File

@ -28,15 +28,6 @@ module QA
resource.value = '1'
end
# Create Auto DevOps compatible repo
Resource::Repository::ProjectPush.fabricate! do |push|
push.project = @project
push.directory = Pathname
.new(__dir__)
.join('../../../../../fixtures/auto_devops_rack')
push.commit_message = 'Create Auto DevOps compatible rack application'
end
# Create and connect K8s cluster
@cluster = Service::KubernetesCluster.new.create!
Resource::KubernetesCluster.fabricate! do |cluster|
@ -47,6 +38,15 @@ module QA
cluster.install_prometheus = true
cluster.install_runner = true
end
# Create Auto DevOps compatible repo
Resource::Repository::ProjectPush.fabricate! do |push|
push.project = @project
push.directory = Pathname
.new(__dir__)
.join('../../../../../fixtures/auto_devops_rack')
push.commit_message = 'Create Auto DevOps compatible rack application'
end
end
after(:all) do