Skip to content

feat(chart): add extraEnv and extraEnvFrom escape hatches #1

feat(chart): add extraEnv and extraEnvFrom escape hatches

feat(chart): add extraEnv and extraEnvFrom escape hatches #1

Workflow file for this run

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