Skip to content

Commit

Permalink
Merge pull request #1566 from openshift-cherrypick-robot/cherry-pick-…
Browse files Browse the repository at this point in the history
…1559-to-release-4.13

[release-4.13] OCPBUGS-20298: Use quay redis image instead docker mysql
  • Loading branch information
openshift-ci[bot] committed Oct 13, 2023
2 parents b77d2d4 + 37d4405 commit 717d4a5
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions pkg/helpers/newapp/newapptest/newapp_test.go
Expand Up @@ -665,7 +665,7 @@ func TestNewAppRunAll(t *testing.T) {
name: "emptyDir volumes",
config: &cmd.AppConfig{
ComponentInputs: cmd.ComponentInputs{
DockerImages: []string{"mysql"},
DockerImages: []string{"quay.io/centos7/redis-5-centos7"},
},

Resolvers: cmd.Resolvers{
Expand Down Expand Up @@ -693,14 +693,14 @@ func TestNewAppRunAll(t *testing.T) {
},

expected: map[string][]string{
"imageStream": {"mysql"},
"deployment": {"mysql"},
"service": {"mysql"},
"volumeMounts": {"mysql-volume-1"},
"imageStream": {"redis-5-centos7"},
"deployment": {"redis-5-centos7"},
"service": {"redis-5-centos7"},
"volumeMounts": {"redis-5-centos7-volume-1"},
},
expectedName: "mysql",
expectedName: "redis-5-centos7",
expectedVolumes: map[string]string{
"mysql-volume-1": "EmptyDir",
"redis-5-centos7-volume-1": "EmptyDir",
},
expectedErr: nil,
},
Expand Down

0 comments on commit 717d4a5

Please sign in to comment.