chore(RHTAPWATCH-568): Add authentication to Service and ServiceMonitor #65
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
name: Check Kubernetes YAMLs with kube-linter | |
on: # yamllint disable-line rule:truthy | |
pull_request: | |
branches: [main] | |
jobs: | |
scan: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Create ../results directory | |
shell: bash | |
run: mkdir -p ../results kustomizedfiles | |
- name: Run kustomize build | |
run: | | |
for p in $(find config -name "*kustomization.y*l"); do kustomize build ${p%/*} -o kustomizedfiles/${p//\//-} || echo "^ ERROR when running kustomize build for ${p%/*} ^"; done | |
- name: Scan yaml files with kube-linter | |
uses: stackrox/[email protected] | |
id: kube-linter-action-scan | |
with: | |
directory: kustomizedfiles | |
format: plain | |
continue-on-error: false |