Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Quick Start GKE Doc - reference change for k8s-pod deployment #615

Merged
merged 1 commit into from
May 29, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion docs/quickstart-gke.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,10 +35,11 @@ As a new developer on-boarding you need to start Skaffold in `dev` mode to begin
on the application and seeing the updates happen in real time. The development team working on the application
has already setup the Dockerfile, Kubernetes manifests, and Skaffold manifest necessary to get you started.

1. Change the references in `skaffold.yaml` to point to your Container Registry.
1. Change the references in `skaffold.yaml` and `k8s-pod.yaml` to point to your Container Registry.

```shell
sed -i -e s#k8s-skaffold#${GOOGLE_CLOUD_PROJECT}#g skaffold.yaml
sed -i -e s#k8s-skaffold#${GOOGLE_CLOUD_PROJECT}#g k8s-pod.yaml
```

1. Take a look at the contents of `skaffold.yaml`. You'll notice a profile named `gcb` that will be using Google Container Builder to build
Expand Down