Skip to content

Commit

Permalink
Use incantation from release page
Browse files Browse the repository at this point in the history
  • Loading branch information
Alex Kursell committed Feb 27, 2019
1 parent 25a0d7a commit d4b14b4
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion docs/troubleshooting.md
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,12 @@ Use the `ingress-nginx` kubectl plugin

Install [krew](https://github.com/GoogleContainerTools/krew), then run
```console
$ kubectl krew install --manifest https://github.com/kubernetes/ingress-nginx/releases/download/nginx-0.23.0/ingress-nginx.yaml
$ (
set -x; cd "$(mktemp -d)" &&
curl -fsSLO "https://github.com/kubernetes/ingress-nginx/releases/download/nginx-0.23.0/{ingress-nginx.yaml,kubectl-ingress_nginx-$(uname | tr '[:upper:]' '[:lower:]')-amd64.tar.gz}" &&
kubectl krew install \
--manifest=ingress-nginx.yaml --archive=kubectl-ingress_nginx-$(uname | tr '[:upper:]' '[:lower:]')-amd64.tar.gz
)
```
to install the plugin. Then run
```console
Expand Down

0 comments on commit d4b14b4

Please sign in to comment.