1
0
Fork 0
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:
Denys Bielyshev 2019-05-23 10:18:34 +01:00 committed by GitHub
commit cc5e556631
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 9 additions and 2 deletions

View file

@ -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.

View file

@ -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: