1
0
Fork 0
mirror of https://github.com/kyverno/kyverno.git synced 2025-03-06 16:06:56 +00:00
kyverno/cmd/cli/kubectl-kyverno/commands/create/exception/doc.go
Charles-Edouard Brétéché a1d06b41df
feat: add create exception cli command (#7781)
Signed-off-by: Charles-Edouard Brétéché <charles.edouard@nirmata.com>
2023-09-12 12:58:30 +00:00

15 lines
341 B
Go

package exception
// TODO
var websiteUrl = ``
var description = []string{
`Create a Kyverno policy exception file.`,
}
var examples = [][]string{
{
"# Create a policy exception file",
`kyverno create exception my-exception --namespace my-ns --policy-rules "policy,rule-1,rule-2" --any "kind=Pod,kind=Deployment,name=test-*"`,
},
}