gitlab-qa 10.4.0 → 10.4.1

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: fe25be14520a4bf78ee88e0d5bd7e36534d79b32c5734b92b8337736c659b6b2
4
- data.tar.gz: c0064bfce6ed145f0e7464ac72f8ca8ddc2c2ae467a956f361645e8443f7546a
3
+ metadata.gz: d05691dfdac6eb77440c9440dc824c50fdb6e68530c23d53d1480eab92b17316
4
+ data.tar.gz: b76dbe09cea7fd9ca5092eaa024d0d9f69b33f35362f741145c4b576d486bf46
5
5
  SHA512:
6
- metadata.gz: f3df8e960239e908aa0f86b7f6dcac023ce6996aadd3a4e49108cbf6f58876de94946f3d475b0828578ccb04309ca241ea8f8eeb3fa44b760624f4cb33c29b2f
7
- data.tar.gz: 0af92a24612916090ae9a71aebef586b3261a6f99c5cd93f287199881f1f959e897bc68811f8fdb86fc607539bb4998839b6420233d300b1ceca6a3005fa7573
6
+ metadata.gz: bec6faa9d2f322f523ddd75ccf29497fadbb723a04ad4b545e7bb0a277e9e6e430b586eb2d21d3371326e6c7b1c1257dfc497da0e72f4cf1c27de9ff4705e5f8
7
+ data.tar.gz: bef3adb4164e0c9b9e756358cea2dbbf9b1802ea7410764291a109999540a151e666cd7ff84799ef0e2c91cc1a169ca2ea6b2871e732784c67e0eeaefd27037d
@@ -34,7 +34,7 @@ with the latest commit from https://gitlab.com/gitlab-org/gitlab-qa/commits/mast
34
34
 
35
35
  - Checklist after gitlab-qa version has been released by the post merge pipeline:
36
36
  - [ ] In the pipeline-common project, [update the GITLAB_QA_VERSION](https://gitlab.com/gitlab-org/quality/pipeline-common/-/blob/master/ci/base.gitlab-ci.yml) and [create a release](https://gitlab.com/gitlab-org/quality/pipeline-common#release-process).
37
- - [ ] In the GitLab project, update the ref for pipeline-common for [package-and-test](https://gitlab.com/gitlab-org/gitlab/-/blob/master/.gitlab/ci/package-and-test/main.gitlab-ci.yml) and [review-apps](https://gitlab.com/gitlab-org/gitlab/-/blob/master/.gitlab/ci/review-apps/qa.gitlab-ci.yml).
37
+ - [ ] In the GitLab project, update the ref for pipeline-common in [qa-common](https://gitlab.com/gitlab-org/gitlab/-/blob/master/.gitlab/ci/qa-common/main.gitlab-ci.yml) and [review-apps](https://gitlab.com/gitlab-org/gitlab/-/blob/master/.gitlab/ci/review-apps/qa.gitlab-ci.yml).
38
38
  - [ ] Unless already done by [renovate-gitlab-bot](https://gitlab.com/dashboard/merge_requests?scope=all&state=opened&author_username=gitlab-dependency-update-bot&label_name[]=Quality), or if you need it sooner, in the GitLab project, [update the gitlab-qa gem version](https://gitlab.com/gitlab-org/gitlab/-/blob/master/qa/Gemfile) and [`Gemfile.lock`](https://gitlab.com/gitlab-org/gitlab/-/blob/master/qa/Gemfile.lock) (for an example, see: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/117054).
39
39
 
40
40
  /label ~Quality ~"type::maintenance" ~"maintenance::dependency"
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- gitlab-qa (10.4.0)
4
+ gitlab-qa (10.4.1)
5
5
  activesupport (~> 6.1)
6
6
  gitlab (~> 4.18.0)
7
7
  http (~> 5.0)
@@ -87,10 +87,26 @@ module Gitlab
87
87
 
88
88
  def gitaly_omnibus
89
89
  <<~OMNIBUS
90
- gitaly['tls_listen_addr'] = '0.0.0.0:9999';
91
- gitaly['certificate_path'] = '/etc/gitlab/ssl/gitaly.test.crt';
92
- gitaly['key_path'] = '/etc/gitlab/ssl/gitaly.test.key';
93
-
90
+ gitaly['configuration'] = {
91
+ auth: {
92
+ token: 'abc123secret',
93
+ },
94
+ tls_listen_addr: '0.0.0.0:9999',
95
+ tls: {
96
+ certificate_path: '/etc/gitlab/ssl/gitaly.test.crt',
97
+ key_path: '/etc/gitlab/ssl/gitaly.test.key',
98
+ },
99
+ storage: [
100
+ {
101
+ name: 'default',
102
+ path: '/var/opt/gitlab/git-data/repositories',
103
+ },
104
+ {
105
+ name: 'storage1',
106
+ path: '/mnt/gitlab/git-data/repositories',
107
+ },
108
+ ],
109
+ };
94
110
  postgresql['enable'] = false;
95
111
  redis['enable'] = false;
96
112
  nginx['enable'] = false;
@@ -105,7 +121,6 @@ module Gitlab
105
121
  gitlab_rails['rake_cache_clear'] = false;
106
122
  gitlab_rails['auto_migrate'] = false;
107
123
 
108
- gitaly['auth_token'] = 'abc123secret';
109
124
  gitlab_shell['secret_token'] = 'shellsecret';
110
125
 
111
126
  gitlab_rails['internal_api_url'] = 'https://#{@gitlab_name}.#{@network}';
@@ -30,14 +30,22 @@ module Gitlab
30
30
  }
31
31
  });
32
32
  gitaly['enable'] = true;
33
- gitaly['listen_addr'] = '0.0.0.0:8075';
34
- gitaly['auth_token'] = 'secret-token';
35
- gitaly['storage'] = [
36
- {
37
- 'name' => 'gitaly',
38
- 'path' => '/var/opt/gitlab/git-data/repositories'
39
- }
40
- ];
33
+ gitaly['configuration'] = {
34
+ auth: {
35
+ token: 'secret-token',
36
+ },
37
+ listen_addr: '0.0.0.0:8075',
38
+ tls: {
39
+ certificate_path: '/etc/gitlab/ssl/gitaly.test.crt',
40
+ key_path: '/etc/gitlab/ssl/gitaly.test.key',
41
+ },
42
+ storage: [
43
+ {
44
+ name: 'gitaly',
45
+ path: '/var/opt/gitlab/git-data/repositories',
46
+ },
47
+ ],
48
+ };
41
49
  gitlab_rails['gitaly_token'] = 'secret-token';
42
50
  gitlab_shell['secret_token'] = 'GITLAB_SHELL_SECRET_TOKEN';
43
51
  prometheus['scrape_configs'] = [
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Gitlab
4
4
  module QA
5
- VERSION = '10.4.0'
5
+ VERSION = '10.4.1'
6
6
  end
7
7
  end
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: 10.4.0
4
+ version: 10.4.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - GitLab Quality
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2023-05-16 00:00:00.000000000 Z
11
+ date: 2023-05-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: climate_control