mirror of
https://github.com/stackrox/kube-linter-action.git
synced 2026-07-17 05:38:09 +00:00
f2c260fad1
Fixing for update to versioning.
24 lines
976 B
Markdown
Executable File
24 lines
976 B
Markdown
Executable File
# kube-linter-action
|
|
|
|
This is a GitHub action for scanning Kubernetes deployment files with [kube-linter](https://github.com/stackrox/kube-linter). This includes both the action itself (.github/actions) and sample GitHub workflow (.github/workflows) and a test YAML.
|
|
|
|
Quick deployment:
|
|
|
|
1. Create a new GitHub repo.
|
|
2. Push all files from the `sample` directory into the repo.
|
|
3. The `kube-linter.yml` workflow will run as an action every time there's a new push to this repo.
|
|
|
|
The action takes two parameters.
|
|
|
|
```
|
|
- name: Scan repo
|
|
id: kube-lint-repo
|
|
uses: stackrox/kube-linter-action@v1
|
|
with:
|
|
directory: yamls
|
|
config: .kube-linter/config.yaml
|
|
```
|
|
|
|
* `directory` is mandatory -- this is the directory of deployment files to scan.
|
|
* `config` is optional -- this is the path to a [configuration file](https://github.com/stackrox/kube-linter/blob/main/config.yaml.example) if you wish to use a non-default configuration.
|