taenzeyang
taenzeyang
https://github.com/kata-containers/kata-containers/blob/bb1ada1a8ba75441a0f1ea17b751d4ec8e0b3360/src/runtime/virtcontainers/kata_agent.go#L949-L953 In order to implement the hooks of NRI in container namespace such as StartContainer hook, could you consider only setting the hooks in runtime namespace to nil? link issue:...
The following codes can successfully implement hooks in runc runtime, but do not work in kata runtime. ``` spec.Hooks.StartContainer = append(spec.Hooks.StartContainer, rspec.Hook{ Path: "/usr/bin/mkdir", Args: []string{"/usr/bin/mkdir", "/run/test"}, Env: nil, Timeout:...