mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-07-28 14:07:14 +00:00
Merge pull request #81069 from aojea/GlusterDynamicProvisioner
Add IPv6 support to e2e GlusterDynamicProvisioner
This commit is contained in:
commit
193c30fd01
@ -18,6 +18,7 @@ package storage
|
|||||||
|
|
||||||
import (
|
import (
|
||||||
"fmt"
|
"fmt"
|
||||||
|
"net"
|
||||||
"strings"
|
"strings"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
@ -872,7 +873,7 @@ var _ = utils.SIGDescribe("Dynamic Provisioning", func() {
|
|||||||
framework.SkipIfProviderIs("gke")
|
framework.SkipIfProviderIs("gke")
|
||||||
ginkgo.By("creating a Gluster DP server Pod")
|
ginkgo.By("creating a Gluster DP server Pod")
|
||||||
pod := startGlusterDpServerPod(c, ns)
|
pod := startGlusterDpServerPod(c, ns)
|
||||||
serverURL := "http://" + pod.Status.PodIP + ":8081"
|
serverURL := "http://" + net.JoinHostPort(pod.Status.PodIP, "8081")
|
||||||
ginkgo.By("creating a StorageClass")
|
ginkgo.By("creating a StorageClass")
|
||||||
test := testsuites.StorageClassTest{
|
test := testsuites.StorageClassTest{
|
||||||
Client: c,
|
Client: c,
|
||||||
|
Loading…
Reference in New Issue
Block a user