Update redis version to redis 6 (#1045) (#1046)

* update redis version to redis 6

Signed-off-by: yaron2 <schneider.yaron@live.com>

* update test

Signed-off-by: yaron2 <schneider.yaron@live.com>

Signed-off-by: yaron2 <schneider.yaron@live.com>
(cherry picked from commit a9a03edf1c)
This commit is contained in:
Yaron Schneider 2022-08-11 11:42:37 -07:00 committed by GitHub
parent abb267057c
commit 6ccc90793e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -56,7 +56,7 @@ const (
// used when DAPR_DEFAULT_IMAGE_REGISTRY is not set.
dockerContainerRegistryName = "dockerhub"
daprDockerImageName = "daprio/dapr"
redisDockerImageName = "redis"
redisDockerImageName = "redis:6"
zipkinDockerImageName = "openzipkin/zipkin"
// used when DAPR_DEFAULT_IMAGE_REGISTRY is set as GHCR.

View File

@ -106,7 +106,7 @@ func TestResolveImageWithGHCR(t *testing.T) {
}
func TestResolveImageWithDockerHub(t *testing.T) {
expectedRedisImageName := "redis"
expectedRedisImageName := "redis:6"
expectedZipkinImageName := "openzipkin/zipkin"
expectedPlacementImageName := "daprio/dapr"