Skip to content
Commits on Source (6)
......@@ -30,6 +30,7 @@ default:
variables:
AUTO_DEPLOY_TAG_REGEX: '^[0-9]+\.[0-9]+\.[0-9]+\+[a-z0-9]{7,}$'
HELM_VERSION: "3.5.2"
DOCKER_VERSION: "24.0.6"
KUBECTL_VERSION: "1.26.7"
STABLE_REPO_URL: "https://charts.helm.sh/stable"
GOOGLE_APPLICATION_CREDENTIALS: ${CI_PROJECT_DIR}/.google_keyfile.json
......@@ -683,7 +684,7 @@ review-docs-cleanup:
image: registry.gitlab.com/gitlab-org/gitlab-build-images/debian-${DEBIAN_VERSION}-ruby-2.7.patched-golang-1.18-node-16.14-postgresql-11:git-2.33-lfs-2.9-chrome-109-yarn-1.22-graphicsmagick-1.3.36-kubectl-1.23-helm-3.5
stage: specs
services:
- docker:dind
- docker:${DOCKER_VERSION}-dind
variables:
DOCKER_HOST: tcp://docker:2375
GITLAB_PASSWORD: $ROOT_PASSWORD
......@@ -857,7 +858,7 @@ production_specs_eks:
image: registry.gitlab.com/gitlab-org/gitlab-omnibus-builder/distribution_ci_tools:${CI_TOOLS_VERSION}
stage: qa
services:
- docker:dind
- docker:${DOCKER_VERSION}-dind
variables:
QA_GENERATE_ALLURE_REPORT: "true"
DOCKER_HOST: tcp://docker:2375
......@@ -897,7 +898,7 @@ wait_for_dev_images:
image: registry.gitlab.com/gitlab-org/gitlab-omnibus-builder/distribution_ci_tools:${CI_TOOLS_VERSION}
stage: prepare
services:
- docker:dind
- docker:${DOCKER_VERSION}-dind
before_script: []
variables:
DOCKER_HOST: tcp://docker:2375
......
......@@ -2,6 +2,10 @@
documentation](doc/development/changelog.md) for instructions on adding your own
entry.
## 7.6.5 (2024-01-13)
No changes.
## 7.6.4 (2024-01-11)
No changes.
......
---
apiVersion: v1
name: gitlab
version: 7.6.4
appVersion: v16.6.4
version: 7.6.5
appVersion: v16.6.5
description: GitLab is the most comprehensive AI-powered DevSecOps Platform.
keywords:
- gitlab
......
---
apiVersion: v1
name: geo-logcursor
version: 7.6.4
appVersion: v16.6.4
version: 7.6.5
appVersion: v16.6.5
description: GitLab Geo logcursor
keywords:
- gitlab
......
---
apiVersion: v1
name: gitaly
version: 7.6.4
appVersion: 16.6.4
version: 7.6.5
appVersion: 16.6.5
description: Git RPC service for handling all the git calls made by GitLab
keywords:
- gitlab
......
---
apiVersion: v1
name: gitlab-exporter
version: 7.6.4
version: 7.6.5
appVersion: 13.4.1
description: Exporter for GitLab Prometheus metrics (e.g. CI, pull mirrors)
keywords:
......
---
apiVersion: v1
name: gitlab-pages
version: 7.6.4
appVersion: 16.6.4
version: 7.6.5
appVersion: 16.6.5
description: Daemon for serving static websites from GitLab projects
keywords:
- gitlab
......
---
apiVersion: v1
name: gitlab-shell
version: 7.6.4
version: 7.6.5
appVersion: 14.30.0
description: sshd for Gitlab
keywords:
......
---
apiVersion: v1
name: kas
version: 7.6.4
version: 7.6.5
appVersion: v16.6.0
description: GitLab Agent Server
keywords:
......
---
apiVersion: v1
name: mailroom
version: 7.6.4
appVersion: v16.6.4
version: 7.6.5
appVersion: v16.6.5
description: Handling incoming emails
keywords:
- gitlab
......
---
apiVersion: v1
name: migrations
version: 7.6.4
appVersion: v16.6.4
version: 7.6.5
appVersion: v16.6.5
description: Database migrations and other versioning tasks for upgrading Gitlab
keywords:
- gitlab
......
---
apiVersion: v1
name: praefect
version: 7.6.4
appVersion: 16.6.4
version: 7.6.5
appVersion: 16.6.5
description: Praefect is a router and transaction manager for Gitaly, and a required
component for running a Gitaly Cluster.
keywords:
......
---
apiVersion: v1
name: sidekiq
version: 7.6.4
appVersion: v16.6.4
version: 7.6.5
appVersion: v16.6.5
description: Gitlab Sidekiq for asynchronous task processing in rails
keywords:
- gitlab
......
---
apiVersion: v1
name: spamcheck
version: 7.6.4
version: 7.6.5
appVersion: 1.2.3
description: GitLab Anti-Spam Engine
keywords:
......
---
apiVersion: v1
name: toolbox
version: 7.6.4
appVersion: v16.6.4
version: 7.6.5
appVersion: v16.6.5
description: For manually running rake tasks through kubectl
keywords:
- gitlab
......
---
apiVersion: v1
name: webservice
version: 7.6.4
appVersion: v16.6.4
version: 7.6.5
appVersion: v16.6.5
description: HTTP server for Gitlab
keywords:
- gitlab
......
......@@ -37,6 +37,7 @@ The table below maps some of the key previous chart versions and GitLab versions
| Chart version | GitLab version |
|---------------|----------------|
| 7.6.5 | 16.6.5 |
| 7.6.4 | 16.6.4 |
| 7.6.3 | 16.6.3 |
| 7.6.2 | 16.6.2 |
......
......@@ -28,7 +28,9 @@ if [ "${STRICT_VERSIONS:-false}" == "true" ] && [ "${DOCKER_INSTALLED_VERSION}"
apt-get update -qq
apt install -y docker-ce-cli=${DOCKER_DEB_VERSION}
fi
docker version --format 'Effective: docker-{{ .Client.Version }}'
# Sometimes, `docker:dind` service is not ready yet, causing exit code of 1
# We only care about the client, anyways!
docker version --format 'Effective: docker-{{ .Client.Version }}' || true
GOMPLATE_INSTALLED_VERSION=""
if command -v gomaplate; then
......
......@@ -51,7 +51,7 @@ global:
edition: ee
## https://docs.gitlab.com/charts/charts/globals#gitlab-version
gitlabVersion: "16.6.4"
gitlabVersion: "16.6.5"
## https://docs.gitlab.com/charts/charts/globals#application-resource
application:
......