Skip to content

Commit fa239cd

Browse files
authored
Merge pull request #7261 from sbueringer/pr-fix-duplicate-mount
🐛 test/e2e: fix duplicate mount in CAPD test
2 parents b57eacf + 621f223 commit fa239cd

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

test/e2e/clusterclass_changes_test.go

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,9 @@ var _ = Describe("When testing ClusterClass changes [ClusterClass]", func() {
5454
"hostPath": "/var/run/docker.sock",
5555
},
5656
map[string]interface{}{
57-
"containerPath": "/tmp",
57+
// /tmp cannot be used as containerPath as
58+
// it already exists.
59+
"containerPath": "/test",
5860
"hostPath": "/tmp",
5961
},
6062
},

0 commit comments

Comments
 (0)