mirror of
https://github.com/kyverno/kyverno.git
synced 2025-03-06 16:06:56 +00:00
* chore: add cli unit tests Signed-off-by: Charles-Edouard Brétéché <charles.edouard@nirmata.com> * chore: add cli commands unit tests Signed-off-by: Charles-Edouard Brétéché <charles.edouard@nirmata.com> --------- Signed-off-by: Charles-Edouard Brétéché <charles.edouard@nirmata.com>
14 lines
367 B
Go
14 lines
367 B
Go
package pull
|
|
|
|
var websiteUrl = `https://kyverno.io/docs/kyverno-cli/#pulling`
|
|
|
|
var description = []string{
|
|
`Pulls policie(s) that are included in an OCI image from OCI registry and saves them to a local directory.`,
|
|
}
|
|
|
|
var examples = [][]string{
|
|
{
|
|
`# Pull policy from an OCI image and save it to the specific directory`,
|
|
`kyverno oci pull . -i <imgref>`,
|
|
},
|
|
}
|