gitlab-qa 7.0.5 → 7.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: cbdcaeeeaa99ad4d6e7c479db9acaadc8f25e62f4fa17c4f6861d9b7be98fe2a
|
|
4
|
+
data.tar.gz: 890d74307cac468dae04a9108d80ca147a1c4f44fb14fc2301055d459f53cf06
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 903a50594c371873590470df3f8fc3fac516f29c086befd61c14bc2dbd17c87aa5e8a88d4792762fffa895e7b2caf8dd8670a37cde20fad527c7b75719759457
|
|
7
|
+
data.tar.gz: 59106ca07a8da61737bcaa482e0da8222fd6be52b5b0ee12f250be4cf0de0d55e99dbf6253ad712a049612e61f30253988690aba955648a7a0a3713d72468a23
|
data/.gitlab-ci.yml
CHANGED
|
@@ -739,6 +739,7 @@ ee:object_storage:
|
|
|
739
739
|
- .rspec-report-opts
|
|
740
740
|
variables:
|
|
741
741
|
GITLAB_QA_OPTS: "--omnibus-config object_storage"
|
|
742
|
+
QA_RSPEC_TAGS: "--tag object_storage"
|
|
742
743
|
|
|
743
744
|
ee:object_storage-quarantine:
|
|
744
745
|
extends:
|
|
@@ -749,6 +750,7 @@ ee:object_storage-quarantine:
|
|
|
749
750
|
- .rspec-report-opts
|
|
750
751
|
variables:
|
|
751
752
|
GITLAB_QA_OPTS: "--omnibus-config object_storage"
|
|
753
|
+
QA_RSPEC_TAGS: "--tag quarantine --tag object_storage"
|
|
752
754
|
|
|
753
755
|
ee:packages:
|
|
754
756
|
extends:
|
|
@@ -758,6 +760,7 @@ ee:packages:
|
|
|
758
760
|
- .rspec-report-opts
|
|
759
761
|
variables:
|
|
760
762
|
GITLAB_QA_OPTS: "--omnibus-config packages"
|
|
763
|
+
QA_RSPEC_TAGS: "--tag packages"
|
|
761
764
|
|
|
762
765
|
ee:packages-quarantine:
|
|
763
766
|
extends:
|
|
@@ -768,6 +771,7 @@ ee:packages-quarantine:
|
|
|
768
771
|
- .rspec-report-opts
|
|
769
772
|
variables:
|
|
770
773
|
GITLAB_QA_OPTS: "--omnibus-config packages"
|
|
774
|
+
QA_RSPEC_TAGS: "--tag quarantine --tag packages"
|
|
771
775
|
|
|
772
776
|
ce:actioncable:
|
|
773
777
|
extends:
|
|
@@ -85,6 +85,7 @@ All environment variables used by GitLab QA should be defined in [`lib/gitlab/qa
|
|
|
85
85
|
| `DEPLOY_VERSION` |- | The version of GitLab being tested against. | No|
|
|
86
86
|
| `GITLAB_QA_USER_AGENT` |- | The browser user-agent to use instead of the default Chrome user-agent. | No|
|
|
87
87
|
| `GEO_FAILOVER` | `false` | Set to `true` when a Geo secondary site has been promoted to a Geo primary site. | No|
|
|
88
|
+
| `GITLAB_INITIAL_ROOT_PASSWORD` | `5iveL!fe` | Initial root password for Omnibus installations | No|
|
|
88
89
|
|
|
89
90
|
|
|
90
91
|
## [Supported Remote Grid environment variables](./running_against_remote_grid.md)
|
|
@@ -90,7 +90,8 @@ module Gitlab
|
|
|
90
90
|
'CACHE_NAMESPACE_NAME' => :cache_namespace_name,
|
|
91
91
|
'DEPLOY_VERSION' => :deploy_version,
|
|
92
92
|
'GITLAB_QA_USER_AGENT' => :gitlab_qa_user_agent,
|
|
93
|
-
'GEO_FAILOVER' => :geo_failover
|
|
93
|
+
'GEO_FAILOVER' => :geo_failover,
|
|
94
|
+
'GITLAB_INITIAL_ROOT_PASSWORD' => :initial_root_password
|
|
94
95
|
}.freeze
|
|
95
96
|
|
|
96
97
|
ENV_VARIABLES.each do |env_name, method_name|
|
|
@@ -189,7 +190,7 @@ module Gitlab
|
|
|
189
190
|
end
|
|
190
191
|
|
|
191
192
|
def initial_root_password
|
|
192
|
-
ENV['GITLAB_INITIAL_ROOT_PASSWORD']
|
|
193
|
+
ENV['GITLAB_INITIAL_ROOT_PASSWORD'] || '5iveL!fe'
|
|
193
194
|
end
|
|
194
195
|
|
|
195
196
|
def qa_container_registry_access_token
|
|
@@ -12,6 +12,7 @@ module Gitlab
|
|
|
12
12
|
gitlab_rails['gitlab_default_theme'] = 10 # Light Red Theme
|
|
13
13
|
gitlab_rails['gitlab_disable_animations'] = true # Disable animations
|
|
14
14
|
gitlab_rails['application_settings_cache_seconds'] = 0 # Settings cache expiry
|
|
15
|
+
gitlab_rails['initial_root_password'] = '#{Runtime::Env.initial_root_password}' # Initial root password
|
|
15
16
|
OMNIBUS
|
|
16
17
|
end
|
|
17
18
|
|
data/lib/gitlab/qa/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: gitlab-qa
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 7.0
|
|
4
|
+
version: 7.1.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- GitLab Quality
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2021-
|
|
11
|
+
date: 2021-04-05 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: climate_control
|