Added terminationGracePeriodSeconds #76
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: Lint chart | |
on: | |
pull_request: | |
push: | |
branches: | |
- main | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- name: Create ../results directory for SARIF report files | |
shell: bash | |
run: mkdir -p ../results | |
- name: Scan yamls | |
uses: stackrox/[email protected] | |
id: kube-linter-action-scan | |
with: | |
directory: "." | |
config: .github/kube-linter.yaml | |
format: sarif | |
output-file: ../results/kube-linter.sarif | |
continue-on-error: true | |
- name: Upload SARIF report files to GitHub | |
uses: github/codeql-action/upload-sarif@v2 | |
- name: Verify kube-linter-action succeeded | |
shell: bash | |
run: | | |
echo "If this step fails, kube-linter found issues. Check the output of the scan step above." | |
[[ "${{ steps.kube-linter-action-scan.outcome }}" == "success" ]] |