Skip to content
Snippets Groups Projects
Commit 8b30406a authored by Daniel Davison's avatar Daniel Davison
Browse files

Merge branch '58503-fix-qa-auto-devops' into 'master'

Fix QA Auto DevOps push after adding cluster

Closes #58503

See merge request gitlab-org/gitlab-ce!25782
parents 773989c6 e8df3ab8
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -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|
Loading
Loading
@@ -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
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment