Enterprise-grade and self-hosted, packaged as a signed Helm chart that runs on the infrastructure you already own. Install on any major provider in a handful of commands — scale on your own terms, without per-request SaaS pricing.
kubectl create namespace imageengine kubectl create secret generic ie-kube-api-key -n imageengine \ --from-literal=KEY=<your-api-key> kubectl create secret docker-registry ie-kube-image-pull -n imageengine \ --docker-server=https://docker.scientiamobile.com/v2/ \ --docker-username=<your-email> \ --docker-password=<your-api-key> \ --docker-email=<your-email>
helm repo add imageengine https://kube.imageengine.io helm repo update
helm install imageengine-kube imageengine/imageengine-kube \
-n imageengine --set provider=aws
Everything a large team needs to run image optimization in-house: a supply chain you can verify, a footprint that scales with your traffic, and telemetry that plugs straight into your existing stack — all under your own cost controls.
Every artifact the chart ships is signed and auditable before it ever runs.
From a small PoC cluster to a sharded, 3-tier caching layer — the footprint follows your traffic.
See exactly what the edge is doing — telemetry that drops straight into your stack.
The full ImageEngine optimization pipeline ships inside the chart — no separate service to wire up.
Every chart and every container image is cryptographically signed. Check them yourself, against our published keys, before anything runs in your cluster.
curl -fsSL https://kube.imageengine.io/pubkey.asc \ | gpg --dearmor > ~/.gnupg/imageengine-kube.kbx helm install imageengine-kube imageengine/imageengine-kube \ --verify --keyring ~/.gnupg/imageengine-kube.kbx
curl -fsSLO https://kube.imageengine.io/cosign.pub
cosign verify --key cosign.pub \
docker.scientiamobile.com/iekube/imageengine-backend.server:<tag>
Verifying every image, reading the SBOM and provenance, and optional in-cluster admission enforcement (Kyverno / sigstore policy-controller) are covered in the security guide.
Everything lives alongside the source on GitHub.