Skip to content

Commit

Permalink
Fix #4780: update quickstart to add reference to --default-repo
Browse files Browse the repository at this point in the history
  • Loading branch information
briandealwis authored Sep 14, 2020
1 parent 9215eb9 commit 9b99b61
Showing 1 changed file with 12 additions and 2 deletions.
14 changes: 12 additions & 2 deletions docs/content/en/docs/quickstart/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,11 @@ In this quickstart, you will:
* [Install minikube](https://minikube.sigs.k8s.io/docs/start/)

{{< alert title="Note">}}
Skaffold will build the app using the Docker daemon hosted inside minikube.
If you want to deploy against a different Kubernetes cluster, e.g. Kind, GKE clusters, you will have to install Docker to build this app.
This tutorial assumes use of Minikube as Skaffold will build the app using the Docker daemon hosted inside minikube
and avoids the need for a registry to host the app's container images.
If you want to deploy against a different Kubernetes cluster then you will have to install Docker to build this app.
Furthermore if you want to deploy to a remote cluster, such as GKE, then you need to set up a container
registry such as [GCR](https://cloud.google.com/container-registry) to host the resulting images.
{{</alert>}}

## Downloading the sample app
Expand Down Expand Up @@ -90,6 +93,13 @@ Watching for changes...

```
{{< alert title="Note">}}
If you are deploying to a remote cluster, you must run `skaffold dev --default-repo=gcr.io/k8s-skaffold/getting-started`
where the repository is a location that you have write-access to. Skaffold then
builds and pushes the container images to that location, and non-destructively
updates the Kubernetes manifest files to reference those pushed images.
{{< /alert >}}
`skaffold dev` watches your local source code and executes your Skaffold pipeline
every time a change is detected. `skaffold.yaml` provides specifications of the
workflow - in this example, the pipeline is
Expand Down

0 comments on commit 9b99b61

Please sign in to comment.