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:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: d05691dfdac6eb77440c9440dc824c50fdb6e68530c23d53d1480eab92b17316
|
|
4
|
+
data.tar.gz: b76dbe09cea7fd9ca5092eaa024d0d9f69b33f35362f741145c4b576d486bf46
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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
|
|
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
|
@@ -87,10 +87,26 @@ module Gitlab
|
|
|
87
87
|
|
|
88
88
|
def gitaly_omnibus
|
|
89
89
|
<<~OMNIBUS
|
|
90
|
-
gitaly['
|
|
91
|
-
|
|
92
|
-
|
|
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['
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
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'] = [
|
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: 10.4.
|
|
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-
|
|
11
|
+
date: 2023-05-18 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: climate_control
|