准入控制器(或 webhook 控制器)
CONNECT
操作实际上意味着什么?哪里有记录?
// Operation is the type of resource operation being checked for admission control
type Operation string
// Operation constants
const (
Create Operation = "CREATE"
Update Operation = "UPDATE"
Delete Operation = "DELETE"
Connect Operation = "CONNECT"
)