Skip to content

Commit

Permalink
ci: default to the latest stable squid instead of devel
Browse files Browse the repository at this point in the history
The devel images have been fairly stable for Rook to test
against, but on occasion there are regressions from
Ceph development that affect the Rook CI. For stability during
Rook development, use the latest stable version of ceph for
PRs, master, and release tests. The daily CI will still use
the devel images from Ceph.

Signed-off-by: Travis Nielsen <[email protected]>
(cherry picked from commit b229240)
  • Loading branch information
travisn committed Nov 6, 2024
1 parent 6027074 commit 8377cda
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/framework/installer/ceph_installer.go
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,8 @@ func ReturnCephVersion() cephv1.CephVersionSpec {
case "reef-devel":
return ReefDevelVersion
default:
return ReefDevelVersion
// Default to the latest stable version
return ReefVersion
}
}

Expand Down

0 comments on commit 8377cda

Please sign in to comment.