Start Here · Section 2

Quickstart Tracks

Kubeletto supports two deployment paradigms. Select the track that matches your workflow:

Track A

OCI Container Image

Deploy pre-built public images from Docker Hub, GitHub Container Registry (GHCR), or Quay.io. Pass --port if your image listens on a port other than 8080.

$ kubeletto deploy --image nginx:alpine --port 80 --wait
Ideal for web servers and existing containerized HTTP services. Your app must serve HTTP traffic on the configured port.
Track B

Continuous Git Push

Link your repository using the GitHub application integration. Push changes to trigger the builder workspace.

$ git commit -am "feat: api" $ git push origin main
Ideal for application code. Kubeletto builds your Dockerfile and deploys a new revision on every push.