mirror of
https://github.com/kyverno/kyverno.git
synced 2025-03-10 01:46:55 +00:00
24 lines
513 B
Go
24 lines
513 B
Go
|
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`,
|
||
|
},
|
||
|
}
|