Remove helm2 support and update docs

This commit is contained in:
Manuel Alejandro de Brito Fontes 2020-11-24 18:12:24 -03:00
parent 5a282c0167
commit 4ac3e1ff2c
No known key found for this signature in database
GPG key ID: 786136016A8BA02A
5 changed files with 21 additions and 30 deletions

View file

@ -190,21 +190,19 @@ kubectl exec -it $POD_NAME -n $POD_NAMESPACE -- /nginx-ingress-controller --vers
## Using Helm
!!! attention
Only helm3 is supported
NGINX Ingress controller can be installed via [Helm](https://helm.sh/) using the chart from the project repository.
To install the chart with the release name `ingress-nginx`:
```console
helm repo add ingress-nginx https://kubernetes.github.io/ingress-nginx
helm update
helm install my-release ingress-nginx/ingress-nginx
```
If you are using [Helm 2](https://v2.helm.sh/) then specify release name using `--name` flag
```console
helm repo add ingress-nginx https://kubernetes.github.io/ingress-nginx/
helm install --name ingress-nginx ingress-nginx/ingress-nginx
```
## Detect installed version:
```console