Skip to content

Commit

Permalink
chore(dragonfly): bump version to v1.20.1 (#215)
Browse files Browse the repository at this point in the history
* chore(dragonfly): bump version to v1.20.1

Signed-off-by: Abhradeep Chakraborty <[email protected]>

* fix

Signed-off-by: Abhradeep Chakraborty <[email protected]>

---------

Signed-off-by: Abhradeep Chakraborty <[email protected]>
  • Loading branch information
Abhra303 authored Jul 15, 2024
1 parent 0b4a219 commit 56dc480
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions e2e/dragonfly_controller_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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.19.0")
df.Spec.Image = fmt.Sprintf("%s:%s", resources.DragonflyImage, "v1.20.1")
err = k8sClient.Update(ctx, &df)
Expect(err).To(BeNil())
})
Expand Down Expand Up @@ -558,8 +558,8 @@ var _ = Describe("Dragonfly Acl file secret key test", Ordered, FlakeAttempts(3)

Context("Dragonfly resource creation with acl file", func() {
It("Should create successfully", func() {
multiLineString := `USER default ON nopass +@ALL +ALL ~*
USER John ON #89e01536ac207279409d4de1e5253e01f4a1769e696db0d6062ca9b8f56767c8 +@ADMIN +SET
multiLineString := `user default on nopass ~* +@all
user john on #0c8e2b662f1c0f1 -@all +@string +hset
`

err := k8sClient.Create(ctx, &corev1.Secret{
Expand Down Expand Up @@ -613,8 +613,8 @@ USER John ON #89e01536ac207279409d4de1e5253e01f4a1769e696db0d6062ca9b8f56767c8 +
Expect(err).To(BeNil())
Expect(result).To(HaveLen(2))
Expect(result).To(ContainElements(
"user default on nopass +@ALL +ALL ~*",
"user John on 89e01536ac20727 +@ADMIN +SET",
"user default on nopass ~* +@all",
"user john on #0c8e2b662f1c0f -@all +@string +hset",
))
})
It("Cleanup", func() {
Expand Down
2 changes: 1 addition & 1 deletion internal/resources/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,5 @@ limitations under the License.
package resources

const (
Version = "v1.19.0"
Version = "v1.20.1"
)

0 comments on commit 56dc480

Please sign in to comment.