https://github.com/gbaeke/kyverno-cli
https://github.com/gbaeke/kyverno-cli
Last synced: 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/gbaeke/kyverno-cli
- Owner: gbaeke
- Created: 2021-04-03T22:14:20.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2021-11-16T19:23:51.000Z (over 3 years ago)
- Last Synced: 2025-01-21T11:48:06.710Z (3 months ago)
- Language: Dockerfile
- Size: 7.81 KB
- Stars: 4
- Watchers: 2
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# kyverno-cli
GitHub Action to run the kyverno cli. See https://kyverno.io/ for more information.
Example use:
```
on: [push]jobs:
kyverno-job:
runs-on: ubuntu-latest
name: Run kyverno
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Validate policy
uses: gbaeke/kyverno-cli@v1
with:
command: |
kyverno apply ./policies --resource=./deploy/deployment.yaml
```