mirror of
https://github.com/kyverno/kyverno.git
synced 2025-03-07 00:17:13 +00:00
20 lines
383 B
Go
20 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`,
|
||
|
},
|
||
|
}
|