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

Bugfix: fix error in quick start guide #73

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 2 additions & 4 deletions docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,9 +50,7 @@ cd ..
### Create Docker Images, Manifests and Load Images

```shell
export PULL_POLICY=Never
export TAG=dev
make docker-build release-manifests
PULL_POLICY=Never TAG=dev make docker-build release-manifests
kind load docker-image gcr.io/cluster-api-nested-controller-amd64:dev
kind load docker-image gcr.io/nested-controlplane-controller-amd64:dev
```
Expand Down Expand Up @@ -100,7 +98,7 @@ define a custom hosts file by setting the `HOSTALIASES` env and append the
IP-address-to-URL mapping to the hosts file.

```shell
echo '127.0.0.1 localhost1' >> ~/.hosts
echo '127.0.0.1 cluster-sample-apiserver' >> ~/.hosts
export HOSTALIASES=~/.hosts
```

Expand Down