skaffold
8 commands
8 shown
Dev mode (hot-reload)
Build, deploy and watch for changes; auto-rebuild on save
skaffold dev --port-forward
One-shot build and deploy
Build images, push to registry and deploy to cluster
skaffold run --tail
Build only (no deploy)
Build images and export artifact metadata to file
skaffold build --file-output=artifacts.json
Deploy pre-built artifacts
Deploy using previously built image digests from CI
skaffold deploy --build-artifacts=artifacts.json
Render manifests only
Produce final Kubernetes YAML without applying it
skaffold render --output=manifests.yaml
Use a specific profile
Activate a named profile from skaffold.yaml
skaffold dev -p staging
Diagnose config issues
Validate skaffold.yaml and print resolved configuration
skaffold diagnose
Clean up deployed resources
Delete all Kubernetes resources created by skaffold run
skaffold delete
no commands match