feat(chart): add extraEnv and extraEnvFrom escape hatches #1
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] | |
| permissions: | |
| id-token: write | |
| contents: read | |
| jobs: | |
| validate: | |
| runs-on: warp-ubuntu-latest-arm64-2x | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: DeterminateSystems/determinate-nix-action@v3 | |
| - uses: DeterminateSystems/flakehub-cache-action@main | |
| - name: Lint chart | |
| run: nix develop --command helm lint . | |
| - name: Validate templates (single-node) | |
| run: | | |
| nix develop --command bash -c " | |
| helm template zero-cache . \ | |
| --set singleNode.enabled=true \ | |
| --set common.database.upstream.url.value=postgres://test:test@localhost/test \ | |
| | kubeconform -strict -summary | |
| " | |
| - name: Validate templates (multi-node) | |
| run: | | |
| nix develop --command bash -c " | |
| helm template zero-cache . \ | |
| --set common.database.upstream.url.value=postgres://test:test@localhost/test \ | |
| | kubeconform -strict -summary | |
| " | |
| - name: Run tests | |
| run: nix develop --command pytest -v |