Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/makocchi-git/kmlinters
A docker image for various kubernetes manifests linters
https://github.com/makocchi-git/kmlinters
conftest docker kubernetes kubeval pluto
Last synced: about 1 month ago
JSON representation
A docker image for various kubernetes manifests linters
- Host: GitHub
- URL: https://github.com/makocchi-git/kmlinters
- Owner: makocchi-git
- License: wtfpl
- Created: 2020-06-04T04:31:24.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2021-05-21T15:07:07.000Z (over 3 years ago)
- Last Synced: 2023-08-06T22:21:29.028Z (over 1 year ago)
- Topics: conftest, docker, kubernetes, kubeval, pluto
- Language: Dockerfile
- Size: 6.84 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# kmlinters
A docker image for various kubernetes manifests linters.
- [kubeval](https://github.com/instrumenta/kubeval)
- [conftest](https://github.com/open-policy-agent/conftest)
- [pluto](https://github.com/FairwindsOps/pluto)## docker image
Public docker image is available [here](https://hub.docker.com/r/makocchi/kmlinters).
## Usage
Here are examples.
```bash
# kubeval
docker run --rm -v ${PWD}:/work makocchi/kmlinters kubeval -d /work# conftest
docker run --rm -v ${PWD}:/work makocchi/kmlinters conftest test /work# pluto
docker run --rm -v ${PWD}:/work makocchi/kmlinters pluto detect-files -d /work
```