1
0
Fork 0
mirror of https://github.com/kyverno/kyverno.git synced 2025-03-10 09:56:55 +00:00
kyverno/cmd/cli/kubectl-kyverno/commands/fix/test/doc.go

24 lines
513 B
Go
Raw Normal View History

package test
// TODO
var websiteUrl = ``
var description = []string{
`Fix inconsistencies and deprecated usage in Kyverno test files.`,
}
var examples = [][]string{
{
`# Fix Kyverno test files`,
`KYVERNO_EXPERIMENTAL=true kyverno fix test .`,
},
{
`# Fix Kyverno test files and save them back`,
`KYVERNO_EXPERIMENTAL=true kyverno fix test . --save`,
},
{
`# Fix Kyverno test files with a specific file name`,
`KYVERNO_EXPERIMENTAL=true kyverno fix test . --file-name test.yaml --save`,
},
}