mirror of
https://github.com/kyverno/kyverno.git
synced 2024-12-14 11:57:48 +00:00
c51bc5beb8
* chore: improve cli commands docs Signed-off-by: Charles-Edouard Brétéché <charles.edouard@nirmata.com> * docs Signed-off-by: Charles-Edouard Brétéché <charles.edouard@nirmata.com> * fix Signed-off-by: Charles-Edouard Brétéché <charles.edouard@nirmata.com> * fix Signed-off-by: Charles-Edouard Brétéché <charles.edouard@nirmata.com> * fix test Signed-off-by: Charles-Edouard Brétéché <charles.edouard@nirmata.com> * experimental Signed-off-by: Charles-Edouard Brétéché <charles.edouard@nirmata.com> * version Signed-off-by: Charles-Edouard Brétéché <charles.edouard@nirmata.com> * unit tests Signed-off-by: Charles-Edouard Brétéché <charles.edouard@nirmata.com> * oci Signed-off-by: Charles-Edouard Brétéché <charles.edouard@nirmata.com> * oci Signed-off-by: Charles-Edouard Brétéché <charles.edouard@nirmata.com> * jp Signed-off-by: Charles-Edouard Brétéché <charles.edouard@nirmata.com> * apply Signed-off-by: Charles-Edouard Brétéché <charles.edouard@nirmata.com> * create Signed-off-by: Charles-Edouard Brétéché <charles.edouard@nirmata.com> --------- Signed-off-by: Charles-Edouard Brétéché <charles.edouard@nirmata.com>
27 lines
744 B
Go
27 lines
744 B
Go
package create
|
|
|
|
// TODO
|
|
var websiteUrl = ``
|
|
|
|
var description = []string{
|
|
`Helps with the creation of various Kyverno resources.`,
|
|
}
|
|
|
|
var examples = [][]string{
|
|
{
|
|
"# Create metrics config file",
|
|
"kyverno create metrics-config -i ns-included-1 -i ns-included-2 -e ns-excluded",
|
|
},
|
|
{
|
|
"# Create test file",
|
|
"kyverno create test -p policy.yaml -r resource.yaml -f values.yaml --pass policy-name,rule-name,resource-name,resource-namespace,resource-kind",
|
|
},
|
|
{
|
|
"# Create user info file",
|
|
"kyverno create user-info -u molybdenum@somecorp.com -g basic-user -c admin",
|
|
},
|
|
{
|
|
"# Create values file",
|
|
"kyverno create values -g request.mode=dev -n prod,env=prod --rule policy,rule,env=demo --resource policy,resource,env=demo",
|
|
},
|
|
}
|