Fix mispelled variable in ingress.go after rebase

This commit is contained in:
Vallery Lancey
2019-03-01 10:42:06 -08:00
committed by GitHub
parent 3de7307a8c
commit 776ac93f04

View File

@@ -96,7 +96,7 @@ func (t *IngressUpgradeTest) Setup(f *framework.Framework) {
t.ipName = fmt.Sprintf("%s-static-ip", ns.Name)
t.ip = t.gceController.CreateStaticIP(t.ipName)
// Create a working basic Ingress
ginko.By(fmt.Sprintf("allocated static ip %v: %v through the GCE cloud provider", t.ipName, t.ip))
ginkgo.By(fmt.Sprintf("allocated static ip %v: %v through the GCE cloud provider", t.ipName, t.ip))
jig.CreateIngress(filepath.Join(ingress.GCEIngressManifestPath, "static-ip-2"), ns.Name, map[string]string{
ingress.IngressStaticIPKey: t.ipName,
ingress.IngressAllowHTTPKey: "false",