@@ -28,7 +28,7 @@ import (
28
28
. "github.com/onsi/gomega"
29
29
)
30
30
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 {
32
32
const containerName = "cntr"
33
33
bTrue := true
34
34
var oneSecond int64 = 1
@@ -49,7 +49,7 @@ func preparePod(name string, node *v1.Node, propagation v1.MountPropagationMode,
49
49
{
50
50
Name : "host" ,
51
51
MountPath : "/mnt/test" ,
52
- MountPropagation : & propagation ,
52
+ MountPropagation : propagation ,
53
53
},
54
54
},
55
55
SecurityContext : & v1.SecurityContext {
@@ -105,12 +105,19 @@ var _ = SIGDescribe("Mount propagation", func() {
105
105
}()
106
106
107
107
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 ))
110
117
111
118
// Check that the pods sees directories of each other. This just checks
112
119
// 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 }
114
121
for _ , podName := range podNames {
115
122
for _ , dirName := range podNames {
116
123
cmd := fmt .Sprintf ("test -d /mnt/test/%s" , dirName )
@@ -147,6 +154,10 @@ var _ = SIGDescribe("Mount propagation", func() {
147
154
"master" : sets .NewString ("master" , "host" ),
148
155
// Slave sees master's mount + itself.
149
156
"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" ),
150
161
}
151
162
dirNames := append (podNames , "host" )
152
163
for podName , mounts := range expectedMounts {
0 commit comments