Skaffold
Use
skaffold initto bootstrap your Skaffold config.Use
skaffold devto automatically build and deploy your application when your code changes.Use
skaffold buildandskaffold testto tag, push, and test your container images.Use
skaffold renderandskaffold applyto generate and deploy Kubernetes manifests as part of a GitOps workflow.
Install
brew install java
brew install skaffold --generate-manifestsInit
skaffold initStart developing the app
skaffold devProfiles
Build
export STATE=$(git rev-list -1 HEAD --abbrev-commit)
skaffold build --file-output build-$STATE.jsonReferences
Last updated