fix: give every requestless platform chart real resource requests/limits #88
Workflow file for this run
This file contains hidden or 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: CI | |
| on: | |
| pull_request: | |
| branches: [main] | |
| push: | |
| branches: [main] | |
| jobs: | |
| # ── Job 1: Helm lint & render ────────────────────────────────────────────── | |
| helm-lint: | |
| name: Helm lint | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Install Helm | |
| uses: azure/setup-helm@v4 | |
| with: | |
| version: "latest" | |
| - name: Lint openbao-init (local values) | |
| run: helm lint services/platform/openbao/init/ -f services/platform/openbao/init/values-local.yaml | |
| - name: Lint openbao-init (scaleway values) | |
| run: helm lint services/platform/openbao/init/ -f services/platform/openbao/init/values-scaleway.yaml | |
| - name: Render bootstrap chart (local) | |
| run: helm template boot bootstrap/ --set env=local --set revision=main | |
| - name: Render bootstrap chart (scaleway) | |
| run: helm template boot bootstrap/ --set env=scaleway --set revision=main |