ci(canary): add kind-based helm chart smoke test to Release Canary#1336
Draft
TaylorMutch wants to merge 2 commits into
Draft
ci(canary): add kind-based helm chart smoke test to Release Canary#1336TaylorMutch wants to merge 2 commits into
TaylorMutch wants to merge 2 commits into
Conversation
Add a kubernetes job to release-canary.yml that creates a kind cluster, installs the published 0.0.0-dev helm chart, port-forwards the gateway, registers it via openshell gateway add, and runs openshell status against it. Pair the workflow with a test-release-canary skill that documents manual dispatch, local reproduction, and failure-mode triage; cross-reference it from CI.md and the CONTRIBUTING.md skills table. Signed-off-by: Taylor Mutch <taylormutch@gmail.com>
CONTRIBUTING.md was missing fix-security-issue and helm-dev-environment from the skills table. AGENTS.md was missing openshell-driver-podman, openshell-prover, and openshell-vfio from the architecture overview. Add them so the documented inventories match what is on disk. Signed-off-by: Taylor Mutch <taylormutch@gmail.com>
|
Auto-sync is disabled for draft pull requests in this repository. Workflows must be run manually. Contributors can view more details about this message here. |
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Adds a
kubernetesjob to the Release Canary workflow that installs the published0.0.0-devHelm chart into a kind cluster, port-forwards the gateway, registers it with the released CLI, and runsopenshell statusend-to-end. Pairs the workflow with atest-release-canaryskill so future iteration on the canary is documented in one place.Related Issue
N/A — no tracking issue. Originated from a request to extend the existing macOS / Ubuntu / Fedora canaries with Helm chart coverage.
Changes
Commit 1 —
ci(canary): add kind-based helm chart smoke test to Release Canary.github/workflows/release-canary.yml: newkubernetesjob. Provisions kind viahelm/kind-action@v1,helm install oci://ghcr.io/nvidia/openshell/helm-chart --version 0.0.0-devwith TLS/auth/pkiInitJob disabled, waits for the gateway pod to be Ready, port-forwards the service to127.0.0.1:8080, installs the OpenShell CLI viainstall.sh, registers the in-cluster gateway askind, and runsopenshell status. Dumps helm/kubectl/port-forward diagnostics on failure..agents/skills/test-release-canary/SKILL.md: new skill covering manual dispatch (gh workflow run release-canary.yml --ref <branch>), the0.0.0-devvs0.0.0-dev.<sha>chart pinning model, local kind reproduction, and per-job failure triage.CI.md: new "Release workflows" section listingrelease-dev.yml,release-tag.yml, andrelease-canary.yml, with a pointer to the skill.CONTRIBUTING.md: addstest-release-canaryto the Reviewing skills row.Commit 2 —
chore(agents): sync skills table and architecture inventoryPre-existing drift uncovered by
sync-agent-infra, unrelated to the canary work but kept in the same PR to land the inventories cleanly:CONTRIBUTING.md: addsfix-security-issue(Reviewing) andhelm-dev-environment(Getting Started) rows.AGENTS.md: addsopenshell-driver-podman,openshell-prover, andopenshell-vfiorows to the architecture overview.Testing
mise run pre-commitpassesThe canary itself is the test — it will fire automatically against the next Release Dev run after merge. To validate the workflow change before merge, dispatch it manually on this branch:
Note: a branch dispatch tests the workflow definition from this branch against
main's published0.0.0-devchart, which is what we want for iterating on the canary itself. See.agents/skills/test-release-canary/SKILL.mdfor the full playbook.Local reproduction of the
kubernetesjob:Checklist
architecture/*.mdupdates.