Sha256: d49520e29efc3ecc07b03da21809906593cd9ec6f0d70bd5cae4c73539392980
Contents?: true
Size: 1.4 KB
Versions: 55
Compression:
Stored size: 1.4 KB
Contents
module Gitlab module QA module Scenario module Test module Instance class RepositoryStorage < Image def perform(release, *rspec_args) Component::Gitlab.perform do |gitlab| gitlab.release = QA::Release.new(release) gitlab.name = 'gitlab' gitlab.network = 'test' gitlab.omnibus_config = <<~OMNIBUS git_data_dirs({ 'default' => { 'path' => '/var/opt/gitlab/git-data/repositories/default' }, 'secondary' => { 'path' => '/var/opt/gitlab/git-data/repositories/secondary' } }); OMNIBUS rspec_args << "--" unless rspec_args.include?('--') rspec_args << %w[--tag repository_storage] gitlab.instance do Component::Specs.perform do |specs| specs.suite = 'Test::Instance::All' specs.release = gitlab.release specs.network = gitlab.network specs.args = [gitlab.address, *rspec_args] specs.env = { 'QA_ADDITIONAL_REPOSITORY_STORAGE' => 'secondary' } end end end end end end end end end end
Version data entries
55 entries across 55 versions & 1 rubygems