mirror of
https://github.com/kyverno/kyverno.git
synced 2025-03-06 16:06:56 +00:00
19 lines
383 B
Go
19 lines
383 B
Go
package policy
|
|
|
|
// TODO
|
|
var websiteUrl = ``
|
|
|
|
var description = []string{
|
|
`Fix inconsistencies and deprecated usage in Kyverno policy files.`,
|
|
}
|
|
|
|
var examples = [][]string{
|
|
{
|
|
`# Fix Kyverno policy files`,
|
|
`KYVERNO_EXPERIMENTAL=true kyverno fix policy .`,
|
|
},
|
|
{
|
|
`# Fix Kyverno policy files and save them back`,
|
|
`KYVERNO_EXPERIMENTAL=true kyverno fix policy . --save`,
|
|
},
|
|
}
|