Tutorials
See the Github Examples page for examples.
As we have gcr.io/k8s-skaffold in our image names, to run the examples, you have two options:
- manually replace the image repositories in skaffold.yaml from gcr.io/k8s-skaffold to yours
- you can point skaffold to your default image repository in one of the four ways:
- flag:
skaffold dev --default-repo <myrepo>
- env var:
SKAFFOLD_DEFAULT_REPO=<myrepo> skaffold dev
- global skaffold config (one time):
skaffold config set --global default-repo <myrepo>
- skaffold config for current kubectl context:
skaffold config set default-repo <myrepo>
- flag:
📣 Please fill out our quick 5-question survey to tell us how satisfied you are with Skaffold, and what improvements we should make. Thank you! 👯
Last modified October 7, 2019: Rework skaffold.dev splash page (ee3710b)