Skip to content
Snippets Groups Projects
Commit 9554ce88 authored by Andrew Patterson's avatar Andrew Patterson
Browse files

Update docs and Rake task to require Redis 6

Since Redis 5 already reached EOL, let's drop support for it.

Changelog: changed
parent be14be4e
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -84,7 +84,7 @@ GitLab is a Ruby on Rails application that runs on the following software:
- Ubuntu/Debian/CentOS/RHEL/OpenSUSE
- Ruby (MRI) 3.0.5
- Git 2.33+
- Redis 5.0+
- Redis 6.0+
- PostgreSQL 12+
 
For more information please see the [architecture](https://docs.gitlab.com/ee/development/architecture.html) and [requirements](https://docs.gitlab.com/ee/install/requirements.html) documentation.
Loading
Loading
Loading
Loading
@@ -5,9 +5,7 @@
module SystemCheck
module App
class RedisVersionCheck < SystemCheck::BaseCheck
# Redis 5.x will be deprecated
# https://gitlab.com/gitlab-org/gitlab/-/issues/331468
MIN_REDIS_VERSION = '5.0.0'
MIN_REDIS_VERSION = '6.0.0'
RECOMMENDED_REDIS_VERSION = "6.0.0"
set_name "Redis version >= #{RECOMMENDED_REDIS_VERSION}?"
 
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment