feat(helm): added Helm chart to allow installation of the driver #5
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This workflow run linters on kubernetes resources. | |
# It is supposed to be run on each push to main branch, as well as for each push in pull request. | |
name: K8s Linters | |
on: | |
pull_request: | |
branches: [ '*' ] | |
paths: | |
- 'helm/**' | |
jobs: | |
linters: | |
name: Lint Kubernetes manifests | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Scan repo with kube-linter | |
uses: stackrox/kube-linter-action@v1 | |
with: | |
directory: helm/ | |
config: helm/.kube-linter.yaml |