Allow terminationGracePeriodSeconds to be configured #101
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: Pull Request | |
on: | |
pull_request | |
jobs: | |
unit-tests: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v4 | |
- name: Install Helm | |
uses: azure/[email protected] | |
- name: Install unittest plugin | |
run: helm plugin install https://github.com/helm-unittest/helm-unittest --version 0.5.2 | |
- name: helm lint | |
run: helm lint helm-chart-sources/* | |
- name: helm unittest | |
run: helm unittest helm-chart-sources/* | |
- uses: actions/setup-go@v5 | |
with: | |
go-version: '>=1.19.0' | |
- name: Install kubeconform | |
run: go install github.com/yannh/kubeconform/cmd/[email protected] | |
- name: kubeconform | |
run: ./scripts/kubeconform.sh |