Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update default redis to v7 #46

Merged
merged 4 commits into from
Feb 26, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ jobs:
kubernetes:
- 1.21.14
- 1.22.17
- 1.23.17
- 1.24.16
- 1.25.12
- 1.26.7
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ Also check this project's [releases](https://github.com/powerhome/redis-operator
### Changed

- Add default haproxy image #47
- Update the default redis version to 7.2.4 #46
- Update metrics exporter images #45

## [v2.0.2] - 2024-02-13
Expand Down
2 changes: 1 addition & 1 deletion api/redisfailover/v1/defaults.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ const (
defaultSentinelNumber = 3
defaultSentinelExporterImage = "leominov/redis_sentinel_exporter:1.7.1"
defaultExporterImage = "quay.io/oliver006/redis_exporter:v1.57.0"
defaultImage = "redis:6.2.6-alpine"
defaultImage = "redis:7.2.4-alpine"
defaultHAProxyImage = "haproxy:2.4"
defaultRedisPort = 6379
)
Expand Down
4 changes: 2 additions & 2 deletions docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ Redis Operator creates/configures/manages redis-failovers atop Kubernetes.
## Requirements

Kubernetes version: 1.21 or higher
Redis version: 6 or higher
Redis version: 7 or higher

Redis operator is being tested against kubernetes 1.25 1.26 1.27 and redis 6
Redis operator is being tested against kubernetes 1.21, 1.22, 1.23, 1.24, 1.25 1.26 1.27 and redis 7
All dependencies have been vendored, so there's no need to any additional download.

## Operator deployment on Kubernetes
Expand Down
Loading