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

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),
}},
},
},