Skip to content

Commit 1fc7281

Browse files
balasankarcAndrew Pattersondependencies-bot
committed
Merge branch 'deps/9a037ba-cbee626' into 'master'
Update webdevops/go-crond from 23.2.0 to 23.12.0 See merge request https://gitlab.com/gitlab-org/omnibus-gitlab/-/merge_requests/7309 Merged-by: Balasankar 'Balu' C <[email protected]> Approved-by: Balasankar 'Balu' C <[email protected]> Approved-by: Hossein Pursultani <[email protected]> Co-authored-by: Andrew Patterson <[email protected]> Co-authored-by: deps <[email protected]>
2 parents 836e53c + 27ea3ef commit 1fc7281

File tree

3 files changed

+41
-1
lines changed

3 files changed

+41
-1
lines changed

config/software/go-crond.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
#
1616

1717
name 'go-crond'
18-
version = Gitlab::Version.new('go-crond', '23.2.0')
18+
version = Gitlab::Version.new('go-crond', '23.12.0')
1919
default_version version.print(false)
2020

2121
license 'BSD-2-Clause'

test-plans/index.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,6 @@
44

55
<!-- Keep this list sorted alphabetically. -->
66
- [golang](upgrade-golang-testplan.md)
7+
- [go-crond](upgrade-go-crond-testplan.md)
78
- [Mattermost](upgrade-mattermost-testplan.md)
89
- [redis](upgrade-redis-testplan.md)
Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
# `go-crond` component upgrade test plan
2+
3+
## Test plan
4+
5+
- [ ] Check [releases](https://github.com/webdevops/go-crond/releases) for potentially breaking changes.
6+
7+
### Build tests
8+
9+
- [ ] Built on all supported platforms using `build-package-on-all-os` job.
10+
- [ ] Ran `Trigger:ee-package` and then `qa-subset-test` as well as manual `qa-remaining-test-manual` CI jobs on `gitlab.com`.
11+
12+
### Install and check version and basic operation
13+
14+
- [ ] Install and configure using HTTPS URL.
15+
- [ ] Verify version.
16+
17+
```shell
18+
opt/gitlab/embedded/bin/go-crond --version
19+
```
20+
21+
- [ ] Check service status
22+
23+
```shell
24+
sudo gitlab-ctl status crond
25+
sudo gitlab-ctl tail crond
26+
```
27+
28+
- [ ] Set crontab entry to a few minutes ahead and make sure cert request renewal occurs
29+
30+
```shell
31+
cat /var/opt/gitlab/crond/letsencrypt-renew
32+
27 0 */4 * * root /opt/gitlab/bin/gitlab-ctl renew-le-certs
33+
sudo vi /var/opt/gitlab/crond/letsencrypt-renew
34+
cat var/opt/gitlab/crond/letsencrypt-renew
35+
30 18 26 * * root /opt/gitlab/bin/gitlab-ctl renew-le-certs
36+
sudo gitlab-ctl restart crond
37+
sudo gitlab-ctl tail crond
38+
sudo gitlab-ctl tail crond | grep "/opt/gitlab/bin/gitlab-ctl renew"
39+
```

0 commit comments

Comments
 (0)