Use incantation from release page
This commit is contained in:
parent
25a0d7a01c
commit
d4b14b40ff
1 changed files with 6 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue