Skip to content

Commit c712697

Browse files
committed
Version bump
1 parent d16adfe commit c712697

File tree

8 files changed

+12
-12
lines changed

8 files changed

+12
-12
lines changed

150_gitlab/001_quickstart/gitlab.demo

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ docker run -d --name gitlab \
66
--volume gitlab_logs:/var/log/gitlab \
77
--volume gitlab_data:/var/opt/gitlab \
88
--publish 80:80 \
9-
gitlab/gitlab-ce:16.5.2-ce.0
9+
gitlab/gitlab-ce:16.9.1-ce.0
1010

1111
# Wait for container to finish starting
1212
while docker container inspect gitlab \

150_gitlab/001_quickstart/slides.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ docker run -d --name gitlab \
2020
--volume gitlab_logs:/var/log/gitlab \
2121
--volume gitlab_data:/var/opt/gitlab \
2222
--publish 80:80 \
23-
gitlab/gitlab-ce:16.5.2-ce.0
23+
gitlab/gitlab-ce:16.9.1-ce.0
2424
```
2525

2626
Wait for container to finish starting:

150_gitlab/100_reverse_proxy/compose.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ services:
4343

4444
# https://docs.gitlab.com/ee/install/docker.html
4545
gitlab:
46-
image: gitlab/gitlab-ce:16.5.2-ce.0
46+
image: gitlab/gitlab-ce:16.9.1-ce.0
4747
environment:
4848
# https://gitlab.com/gitlab-org/omnibus-gitlab/blob/master/files/gitlab-config-template/gitlab.rb.template
4949
GITLAB_OMNIBUS_CONFIG: |

150_gitlab/150_update/slides.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ You must update to every minor version due to schema updates
3434

3535
## Hands-On
3636

37-
1. Update `compose.yml` in 100_reverse_proxy<br>with new image `gitlab/gitlab-ce:16.6.0-ce.0`
37+
1. Update `compose.yml` in 100_reverse_proxy<br>with new image `gitlab/gitlab-ce:16.9.2-ce.0`
3838
1. Run deployment from [reverse proxy section](#/gitlab_traefik)
3939

4040
(Minor update to v15.10.0 possible.)

150_gitlab/160_runner/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM gitlab/gitlab-runner:v16.5.0
1+
FROM gitlab/gitlab-runner:v16.9.1
22
COPY --chmod=0755 entrypoint.sh /
33
RUN mkdir /builds \
44
&& chown gitlab-runner /builds

160_gitlab_ci/000_rollout/runner/runner/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#syntax=docker/dockerfile:1.6.0
22

3-
FROM gitlab/gitlab-runner:v16.5.0
3+
FROM gitlab/gitlab-runner:v16.9.1
44

55
RUN <<EOF
66
mkdir /builds

160_gitlab_ci/000_rollout/server/compose.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ services:
5656

5757
# https://docs.gitlab.com/ee/install/docker.html
5858
gitlab:
59-
image: gitlab/gitlab-ce:16.5.1-ce.0
59+
image: gitlab/gitlab-ce:16.9.1-ce.0
6060
environment:
6161
# https://gitlab.com/gitlab-org/omnibus-gitlab/blob/master/files/gitlab-config-template/gitlab.rb.template
6262
GITLAB_OMNIBUS_CONFIG: |

packer/gitlab.pkr.hcl

+5-5
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,11 @@ packer {
88
}
99

1010
locals {
11-
gitlab_version = "16.5.1"
12-
gitlab_runner_version = "16.5.0"
13-
traefik_version = "2.10.5"
14-
portainer_version = "2.19.1"
15-
code_server_version = "4.18.0"
11+
gitlab_version = "16.9.1"
12+
gitlab_runner_version = "16.9.1"
13+
traefik_version = "2.10.7"
14+
portainer_version = "2.19.4"
15+
code_server_version = "4.23.0"
1616
nginx_version = "1.24.0"
1717
}
1818

0 commit comments

Comments
 (0)