Skip to content

Commit a943fdd

Browse files
committed
Update e2e test with private mount propagation
1 parent 01a44d2 commit a943fdd

File tree

1 file changed

+16
-5
lines changed

1 file changed

+16
-5
lines changed

test/e2e/node/mount_propagation.go

+16-5
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ import (
2828
. "github.com/onsi/gomega"
2929
)
3030

31-
func preparePod(name string, node *v1.Node, propagation v1.MountPropagationMode, hostDir string) *v1.Pod {
31+
func preparePod(name string, node *v1.Node, propagation *v1.MountPropagationMode, hostDir string) *v1.Pod {
3232
const containerName = "cntr"
3333
bTrue := true
3434
var oneSecond int64 = 1
@@ -49,7 +49,7 @@ func preparePod(name string, node *v1.Node, propagation v1.MountPropagationMode,
4949
{
5050
Name: "host",
5151
MountPath: "/mnt/test",
52-
MountPropagation: &propagation,
52+
MountPropagation: propagation,
5353
},
5454
},
5555
SecurityContext: &v1.SecurityContext{
@@ -105,12 +105,19 @@ var _ = SIGDescribe("Mount propagation", func() {
105105
}()
106106

107107
podClient := f.PodClient()
108-
master := podClient.CreateSync(preparePod("master", node, v1.MountPropagationBidirectional, hostDir))
109-
slave := podClient.CreateSync(preparePod("slave", node, v1.MountPropagationHostToContainer, hostDir))
108+
bidirectional := v1.MountPropagationBidirectional
109+
master := podClient.CreateSync(preparePod("master", node, &bidirectional, hostDir))
110+
111+
hostToContainer := v1.MountPropagationHostToContainer
112+
slave := podClient.CreateSync(preparePod("slave", node, &hostToContainer, hostDir))
113+
114+
none := v1.MountPropagationNone
115+
private := podClient.CreateSync(preparePod("private", node, &none, hostDir))
116+
defaultPropagation := podClient.CreateSync(preparePod("default", node, nil, hostDir))
110117

111118
// Check that the pods sees directories of each other. This just checks
112119
// that they have the same HostPath, not the mount propagation.
113-
podNames := []string{master.Name, slave.Name}
120+
podNames := []string{master.Name, slave.Name, private.Name, defaultPropagation.Name}
114121
for _, podName := range podNames {
115122
for _, dirName := range podNames {
116123
cmd := fmt.Sprintf("test -d /mnt/test/%s", dirName)
@@ -147,6 +154,10 @@ var _ = SIGDescribe("Mount propagation", func() {
147154
"master": sets.NewString("master", "host"),
148155
// Slave sees master's mount + itself.
149156
"slave": sets.NewString("master", "slave", "host"),
157+
// Private sees only its own mount
158+
"private": sets.NewString("private"),
159+
// Default (=private) sees only its own mount
160+
"default": sets.NewString("default"),
150161
}
151162
dirNames := append(podNames, "host")
152163
for podName, mounts := range expectedMounts {

0 commit comments

Comments
 (0)