Merge pull request #95841 from chewong/do-not-hardcode-nginx-image

fix: do not hardcode nginx image URL in rc e2e test case
This commit is contained in:
Kubernetes Prow Robot 2020-11-02 13:41:42 -08:00 committed by GitHub
commit 716e38a102
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -135,7 +135,7 @@ var _ = SIGDescribe("ReplicationController", func() {
Spec: v1.PodSpec{
Containers: []v1.Container{{
Name: testRcName,
Image: "nginx",
Image: imageutils.GetE2EImage(imageutils.Nginx),
}},
},
},