diff --git a/e2e/dragonfly_controller_test.go b/e2e/dragonfly_controller_test.go index fb91842..4b8d22f 100644 --- a/e2e/dragonfly_controller_test.go +++ b/e2e/dragonfly_controller_test.go @@ -305,7 +305,7 @@ var _ = Describe("Dragonfly Lifecycle tests", Ordered, FlakeAttempts(3), func() }, &df) Expect(err).To(BeNil()) - df.Spec.Image = fmt.Sprintf("%s:%s", resources.DragonflyImage, "v1.20.1") + df.Spec.Image = fmt.Sprintf("%s:%s", resources.DragonflyImage, "v1.21.2") err = k8sClient.Update(ctx, &df) Expect(err).To(BeNil()) }) diff --git a/internal/resources/version.go b/internal/resources/version.go index 7be0dc5..623d183 100644 --- a/internal/resources/version.go +++ b/internal/resources/version.go @@ -17,5 +17,5 @@ limitations under the License. package resources const ( - Version = "v1.20.1" + Version = "v1.21.2" )