Skip to content

OME 1.0.0

Choose a tag to compare

@github-actions github-actions released this 25 Jun 03:33
cb856bc

OME 1.0.0

What's NEW

⚠️ Breaking Changes
Module path renamed from github.com/sgl-project/ome to sigs.k8s.io/ome (#620). Update all imports — anything depending on OME as a Go module must change its import paths accordingly.
🚀 Features
Add DeepSeek v4 runtimes — new DeepSeek-V4-Flash and DeepSeek-V4-Pro model + vLLM runtime configs (#598)
AUDIO_TO_TEXT capability detection for ASR models (#581)
Expose container startup failures in InferenceService status, surfacing crash/startup errors to users (#616)
Recognize compressed-tensors as a quantization method in the model parser (#637)
🐛 Bug Fixes
Return pod webhook errors instead of panicking (#619)
Fix InferenceService pod status lookup for long raw-deployment names (#618)
Trigger model redownload on spec/label/annotation changes (#552)
Override data parallel size for accelerator configs (#611)
Fix mixed-case check against lowercased normalizedModelType (#591)
♻️ Refactors
Refactor model parser (#635)
Refactor AcceleratorClass cheapest-selection iteration (#548)
Add multi-modal model fallback in generic model config parsing (#589)
📚 Docs
Update documentation site URLs (#605)
🔧 Maintenance / CI
Add pre-commit hooks and wire them into PR validation, with failure annotations (#562, #572, #573, #571)
Fix static-analysis / staticcheck findings across pkg/ and the model agent (#558, #561, #554)
Repo hygiene: end-of-file newlines, trailing whitespace, spelling fixes (#565, #563, #571)
Update outdated HF model config testdata (#586)
Helm: bump default image and remaining references to v0.1.5 (#582, #592)
Bump actions/deploy-pages 4 → 5 (#551)

📦 Container Images

The following container images are available:

# OME Manager
docker pull ghcr.io/moirai-internal/ome-manager:v1.0.0

# Model Agent
docker pull ghcr.io/moirai-internal/model-agent:v1.0.0

# OME Agent
docker pull ghcr.io/moirai-internal/ome-agent:v1.0.0

# Multinode Prober
docker pull ghcr.io/moirai-internal/multinode-prober:v1.0.0

⎈ Helm Installation

Option 1: OCI Registry (Recommended)

# Install directly from OCI registry
helm install ome-crd oci://ghcr.io/moirai-internal/charts/ome-crd --version 1.0.0 --namespace ome --create-namespace
helm install ome oci://ghcr.io/moirai-internal/charts/ome-resources --version 1.0.0 --namespace ome

Option 2: GitHub Releases

# Add the OME Helm repository
helm repo add ome https://github.com/ome-projects/ome/releases/download/v1.0.0
helm repo update

# Install OME
helm install ome-crd ome/ome-crd --namespace ome --create-namespace
helm install ome ome/ome-resources --namespace ome

📋 Changelog

v0.1.5...v1.0.0

📄 Software Bill of Materials

SBOMs are available in both SPDX and CycloneDX formats for:

  • Source code
  • All container images

🔐 Signatures

All container images are signed with cosign. Verify with:

cosign verify ghcr.io/moirai-internal/ome-manager:v1.0.0   --certificate-identity-regexp=https://github.com/ome-projects/ome/.github/workflows/release.yaml@refs/tags/.*   --certificate-oidc-issuer=https://token.actions.githubusercontent.com

What's Changed

New Contributors