-
Notifications
You must be signed in to change notification settings - Fork 89
Open
Description
containerd version: v1.7.14
nri version: 0.6.1
i want to remove Specific mount using this code in nri
for _, m := range container.Mounts {
if strings.HasSuffix(m.Source, mountSuffix) {
adjust.RemoveMount(m.Destination)
}
}```
but after pod created,Nothing has changed. May I ask if I used the wrong way?
Reactions are currently unavailable