Commit a078ebf2 authored by Humble Chirammal's avatar Humble Chirammal

Set correct server uri on e2e dynamic provisioner

parent a1539d8e
...@@ -791,7 +791,7 @@ var _ = utils.SIGDescribe("Dynamic Provisioning", func() { ...@@ -791,7 +791,7 @@ var _ = utils.SIGDescribe("Dynamic Provisioning", func() {
It("should create and delete persistent volumes [fast]", func() { It("should create and delete persistent volumes [fast]", func() {
By("creating a Gluster DP server Pod") By("creating a Gluster DP server Pod")
pod := startGlusterDpServerPod(c, ns) pod := startGlusterDpServerPod(c, ns)
serverUrl := "https://" + pod.Status.PodIP + ":8081" serverUrl := "http://" + pod.Status.PodIP + ":8081"
By("creating a StorageClass") By("creating a StorageClass")
test := testsuites.StorageClassTest{ test := testsuites.StorageClassTest{
Name: "Gluster Dynamic provisioner test", Name: "Gluster Dynamic provisioner test",
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment