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

Fix development doc [ci skip] #1686

Merged
merged 1 commit into from
Nov 11, 2017
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
8 changes: 4 additions & 4 deletions docs/development.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ $ go get -u github.com/golang/dep
This will automatically save the dependencies to the `vendor/` directory.

```console
$ cd $GOPATH/src/ingress-nginx
$ cd $GOPATH/src/k8s.io/ingress-nginx
$ dep ensure
$ dep ensure -update
$ dep prune
Expand All @@ -51,7 +51,7 @@ In order to use your local Docker, you may need to set the following environment
# "gcloud docker" (default) or "docker"
$ export DOCKER=<docker>

# "gcr.io/google_containers" (default), "index.docker.io", or your own registry
# "quay.io/kubernetes-ingress-controller" (default), "index.docker.io", or your own registry
$ export REGISTRY=<your-docker-registry>
```

Expand All @@ -69,13 +69,13 @@ $ make build
Build a local container image

```console
$ make docker-build TAG=<tag> PREFIX=$USER/ingress-controller
$ TAG=<tag> REGISTRY=$USER/ingress-controller make docker-build
```

Push the container image to a remote repository

```console
$ make docker-push TAG=<tag> PREFIX=$USER/ingress-controller
$ TAG=<tag> REGISTRY=$USER/ingress-controller make docker-push
```

## Deploying
Expand Down