·
7 commits
to main
since this release
Immutable
release. Only release title and notes can be modified.
What's Changed
0.26.0 (2026-09-25)
β¨ Features
- gateway: route RFC 9728 metadata and expose MCP_RESOURCE_URL (#247) (b439391)
- release: pin operator image in tagged manifests (#248) (5d15513)
β»οΈ Improvements
π Bug Fixes
- controller: reconcile resources when namespace starts matching (#237) (93292f9)
- gateway: map guardrails failMode to closed/open (#244) (e71728e)
- release: pin operator image in install.yaml asset (#242) (432c9bd)
π Documentation
π¦ Installation
One-Command Installation (Recommended)
Install the operator and CRDs in one command using this release:
kubectl apply -f https://github.com/inference-gateway/operator/releases/download/v0.26.0/install.yamlOr install the latest stable release:
kubectl apply -f https://github.com/inference-gateway/operator/releases/latest/download/install.yamlGitOps / ArgoCD
apiVersion: argoproj.io/v1alpha1
kind: Application
metadata:
name: inference-gateway-operator
namespace: argocd
spec:
project: default
source:
repoURL: https://github.com/inference-gateway/operator
targetRevision: v0.26.0
path: manifests
destination:
server: https://kubernetes.default.svc
namespace: inference-gateway-system
syncPolicy:
automated:
prune: true
selfHeal: true
syncOptions:
- CreateNamespace=trueSeparate CRD Installation (Advanced)
# Install (or upgrade) only the CRDs
kubectl apply -f https://github.com/inference-gateway/operator/releases/download/v0.26.0/crds.yaml
# Then install the operator (install.yaml is idempotent and keeps the CRDs in sync)
kubectl apply -f https://github.com/inference-gateway/operator/releases/download/v0.26.0/install.yamlContainer Image
docker pull ghcr.io/inference-gateway/operator:0.26.0Supported architectures: linux/amd64, linux/arm64.
β Verify the Installation
kubectl get pods -n inference-gateway-system
kubectl get crd | grep inference-gatewayFor additional installation methods (custom namespace, namespace-scoped permissions, development setup), see the Installation guide.
Full Changelog: v0.25.1...v0.26.0