mirror of https://github.com/k3s-io/k3s
Merge pull request #73995 from humblec/fix-e2e
Use correct server url in dynamic provisioning testspull/564/head
commit
1250237316
|
@ -814,7 +814,7 @@ var _ = utils.SIGDescribe("Dynamic Provisioning", func() {
|
|||
It("should create and delete persistent volumes [fast]", func() {
|
||||
By("creating a Gluster DP server Pod")
|
||||
pod := startGlusterDpServerPod(c, ns)
|
||||
serverUrl := "https://" + pod.Status.PodIP + ":8081"
|
||||
serverUrl := "http://" + pod.Status.PodIP + ":8081"
|
||||
By("creating a StorageClass")
|
||||
test := testsuites.StorageClassTest{
|
||||
Name: "Gluster Dynamic provisioner test",
|
||||
|
|
Loading…
Reference in New Issue