mirror of
https://github.com/kyverno/kyverno.git
synced 2025-03-09 09:26:54 +00:00
19 lines
472 B
Go
19 lines
472 B
Go
|
package push
|
||
|
|
||
|
var websiteUrl = `https://kyverno.io/docs/kyverno-cli/#pushing`
|
||
|
|
||
|
var description = []string{
|
||
|
`Push policie(s) that are included in an OCI image to OCI registry.`,
|
||
|
}
|
||
|
|
||
|
var examples = [][]string{
|
||
|
{
|
||
|
`# Push policy to an OCI image from a given policy file`,
|
||
|
`kyverno oci push -p policy.yaml -i <imgref>`,
|
||
|
},
|
||
|
{
|
||
|
`# Push multiple policies to an OCI image from a given directory that includes policies`,
|
||
|
`kyverno oci push -p policies. -i <imgref>`,
|
||
|
},
|
||
|
}
|