Commit 81e8953
Ian Campbell
Drop duplicate mounts of CNI directories.
Previously we had:
```
config:
binds:
- /var/lib/cni/conf:/etc/cni/net.d:rshared,rbind
- /var/lib/cni/bin:/opt/cni/bin:rshared,rbind
...
runtime:
mounts:
- type: bind
source: /var/lib/cni/bin
destination: /opt/cni/bin
options: ["rw","bind"]
- type: bind
source: /var/lib/cni/conf
destination: /etc/cni/net.d
options: ["rw","bind"]
```
Which is redundant. Drop `runtime.mounts` to leave just the `binds`.
Signed-off-by: Ian Campbell <ijc@docker.com>1 parent d987e85 commit 81e8953
1 file changed
+0
-9
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
36 | 36 | | |
37 | 37 | | |
38 | 38 | | |
39 | | - | |
40 | | - | |
41 | | - | |
42 | | - | |
43 | | - | |
44 | | - | |
45 | | - | |
46 | | - | |
47 | | - | |
0 commit comments