Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
f9ce774
Add CNPG-style instance manager for RDB cleanup and lifecycle managem…
usiegj00 Jan 25, 2026
5b86e21
fix: disable enableServiceLinks on all pods (#10)
usiegj00 Jan 25, 2026
1249772
docs: update README for v1.6.1 release
usiegj00 Jan 25, 2026
1e98408
test: add E2E tests for probe behavior (#11)
usiegj00 Jan 25, 2026
4c76491
feat: add HTTP health endpoints to instance manager (#12)
usiegj00 Jan 25, 2026
4626b8a
feat: replace liveness probe with httpGet when instance manager enabl…
usiegj00 Jan 25, 2026
18877f0
feat: replace readiness probe with httpGet when instance manager enabled
usiegj00 Jan 25, 2026
0e0fe63
Merge pull request #14 from buildio/feature/httpget-readiness-probe
usiegj00 Jan 25, 2026
70eb259
feat: add sentinel-free architecture with operator-managed failover
usiegj00 Jan 25, 2026
4088738
docs: update for v1.7.0 with sentinel-free architecture
usiegj00 Jan 25, 2026
ae9638b
docs: recommend instanceManagerImage with sentinel-free mode
usiegj00 Jan 25, 2026
63b6b98
fix: correct service names in E2E test and docs (rfrm/rfrs not rf-rm/…
usiegj00 Jan 25, 2026
b2b9cc4
Merge pull request #15 from buildio/feature/sentinel-free-architecture
usiegj00 Jan 25, 2026
c4fd8e7
chore: bump chart version to 3.7.0 for v1.7.0 release
usiegj00 Jan 25, 2026
67aab18
feat: v4.0.0 - make instance manager required, remove legacy probes (…
usiegj00 Jan 25, 2026
9d27caf
chore: merge duplicate CI workflows into single ci.yaml
usiegj00 Jan 26, 2026
539fb0b
fix: update integration tests for v4.0.0 compatibility
usiegj00 Jan 26, 2026
b0436bc
fix: remove minikube docker-env for none driver
usiegj00 Jan 26, 2026
38ae496
Merge branch 'main' into main
Saremox Jan 26, 2026
263b229
fix: add ImagePullPolicy: Never to integration test
usiegj00 Jan 26, 2026
c12fdf0
fix: add pod readiness wait and diagnostics to integration tests
usiegj00 Jan 26, 2026
686a6a5
fix: use IfNotPresent image pull policy to allow Redis image pull
usiegj00 Jan 26, 2026
37da9ef
Merge branch 'main' into main
Saremox Jan 27, 2026
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
4 changes: 4 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@ jobs:
go-version-file: go.mod
- name: Build redis-operator
run: go build -v ./cmd/redisoperator
- name: Build redis-instance
run: go build -v ./cmd/instance

check:
name: Lint
Expand Down Expand Up @@ -69,6 +71,8 @@ jobs:
kubernetes-version: ${{ matrix.kubernetes }}
minikube-version: 1.37.0
driver: none
- name: Build operator image for tests
run: docker build -t ghcr.io/buildio/redis-operator:test -f docker/app/Dockerfile .
- name: Add redisfailover CRD
run: kubectl create -f manifests/databases.spotahome.com_redisfailovers.yaml
- run: make ci-integration-test
Expand Down
Loading