feat: add resource limits to consumer, kafka brokers and namespace #15
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: Helm Chart Validation | |
on: | |
workflow_dispatch: | |
pull_request: | |
branches: [master] | |
jobs: | |
lint: | |
name: Helm Chart Lint | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Linting the Helm Chart | |
run: | | |
pwd | |
helm lint . | |
shell: bash | |
- name: Generate a template | |
run: | | |
pwd | |
cd ../ | |
helm template infra-helm-chart | |
shell: bash |