Test plan fpr Redis component upgrade
一貫した開発プロセスとドキュメントを確保するため、GitLabへのすべての貢献は英語で提出する必要があります。そのため、GitLabへの貢献に関するドキュメント(https://docs.gitlab.com/development/に掲載)も英語でのみ提供されています。
以下を希望される場合:
- コードの貢献を提出する
- バグの報告または修正
- 機能や改善の提案
- ドキュメントへの貢献
これらのページの英語版のガイドラインに従ってください。
このページの英語版にアクセスしてください。
Copy the following test plan to a comment of the merge request that upgrades the component.
## Test plan
- [ ] Performed a successful GitLab Enterprise Edition (EE) build on all supported platforms (include `build-package-on-all-os` job).
- [ ] Ran `qa-subset-test` as well as manual `qa-remaining-test-manual` CI/CD test job for both GitLab Enterprise Edition and GitLab Community Edition.
- [ ] Install a custom CA
- [ ] Generate a custom CA
```shell
$ openssl genrsa -des3 -out customca.key 2048
$ openssl req -x509 -new -nodes -key customca.key -sha256 -days 365 -out customca.crt
```
- [ ] Copy the custom CA certificate to `/etc/gitlab/trusted-certs/`
```shell
cp customca.pem /etc/gitlab/trusted-certs/
```
- [ ] Reconfigure GitLab and confirm the CA bundle was generated and symlinked
```shell
$ ls -l /etc/gitlab/trusted-certs/
total 4
lrwxrwxrwx 1 root root 12 May 12 09:03 9da13359.0 -> customca.crt
-rw-r--r-- 1 1001 1001 1245 May 12 08:59 customca.crt
$ ls -l /opt/gitlab/embedded/ssl/certs/
total 224
lrwxrwxrwx 1 root root 38 May 12 09:03 9da13359.0 -> /etc/gitlab/trusted-certs/customca.crt
-rw-r--r-- 1 root root 147 May 12 09:03 README
-rw-r--r-- 1 root root 224369 Apr 11 13:09 cacert.pem
```