Release v0.1.0-rc.13
Pre-releaseNVCRE v0.1.0-rc.13
The NVIDIA Cluster Readiness Engine (NVCRE) is a Kubernetes controller that
certifies GPU clusters before production use. It runs real training
and communication workloads across topology-aware node groups,
measures goodput and bandwidth, detects hardware failures, and
quarantines bad nodes. See the
README
for the full feature list.
Install nvcrectl
While this repository is internal, GitHub serves release assets only through
authenticated API downloads — plain curl against releases/download/...
returns a 404 "Not Found" page instead of the script, even with a token.
Fetch the installer with the gh CLI (authenticate with gh auth login):
gh release download v0.1.0-rc.13 \
--repo NVIDIA/cluster-readiness-engine \
--pattern installer --output - | bash -s -- -v v0.1.0-rc.13Once the repository is public, the plain curl form works. The version is
named explicitly because releases/latest resolves only to the newest
stable release, and every release so far is a pre-release. Once v0.1.0
is tagged, the shorter form installs the newest stable one:
curl -sSL https://github.com/NVIDIA/cluster-readiness-engine/releases/download/v0.1.0-rc.13/installer | bash -s -- -v v0.1.0-rc.13
curl -sSL https://github.com/NVIDIA/cluster-readiness-engine/releases/latest/download/installer | bashHelm Chart
helm install nvcre \
oci://ghcr.io/nvidia/nvcre \
--version v0.1.0-rc.13 \
--namespace nvcre \
--create-namespaceThe controller image for this release is
ghcr.io/nvidia/cluster-readiness-engine/manager:v0.1.0-rc.13.
nvcrectl CLI
Download the binary for your platform from the assets below and place it on your $PATH.
| Platform | Binary |
|---|---|
| Linux amd64 | nvcrectl-linux-amd64 |
| Linux arm64 | nvcrectl-linux-arm64 |
| macOS amd64 | nvcrectl-darwin-amd64 |
| macOS arm64 (Apple Silicon) | nvcrectl-darwin-arm64 |
Verify your download
Every asset is listed in checksums.txt with its SHA-256 digest.
After you download an asset, verify it:
sha256sum --check --ignore-missing checksums.txtThird-Party Notices
Third-party Go module licenses are listed in
THIRD_PARTY_NOTICES.md
and attached as a release asset.
Support
- Ask questions in GitHub Discussions.
- Report bugs with the issue templates.
- Report security issues per SECURITY.md, never through GitHub issues.
What's Changed
Other Changes
- Rename CRE to NVCRE: API group, chart, namespace, RBAC, and prose by @ndipebot in #222
- fix: publish manager image to the documented GHCR path; fix installer on older gh by @ndipebot in #223
Full Changelog: v0.1.0-rc.12...v0.1.0-rc.13