mirror of
https://github.com/kyverno/kyverno.git
synced 2025-03-31 03:45:17 +00:00
Merge pull request #93 from nirmata/fix-case
- make dir case consistent
This commit is contained in:
commit
cc5e556631
4 changed files with 9 additions and 2 deletions
|
@ -56,7 +56,7 @@ To test a policy using the CLI type:
|
|||
For example:
|
||||
|
||||
```bash
|
||||
kyverno ../../examples/CLI/policy-deployment.yaml ../../examples/CLI/resources
|
||||
kyverno ../../examples/cli/policy-deployment.yaml ../../examples/cli/resources
|
||||
```
|
||||
|
||||
In future releases, the CLI will support complete validation of policies and will allow testing policies against resources in Kubernetes clusters.
|
||||
|
|
|
@ -4,7 +4,7 @@ metadata :
|
|||
name : policy-deployment
|
||||
spec :
|
||||
rules:
|
||||
- name: deployment-policy
|
||||
- name: add-label
|
||||
resource:
|
||||
kinds :
|
||||
- Deployment
|
||||
|
@ -19,6 +19,13 @@ spec :
|
|||
- path: /metadata/labels/app
|
||||
op: replace
|
||||
value: "nginx_is_mutated"
|
||||
- name: check-image
|
||||
resource:
|
||||
kinds :
|
||||
- Deployment
|
||||
selector :
|
||||
matchLabels :
|
||||
cli: test
|
||||
validate:
|
||||
message: "The imagePullPolicy must be Always when :latest is used as a tag"
|
||||
pattern:
|
Loading…
Add table
Reference in a new issue