2018-04-24 09:36:16 +00:00
# Installation Guide
2019-04-30 16:45:58 +00:00
!!! attention
2021-01-10 18:20:48 +00:00
The default configuration watches Ingress object from **all namespaces** .
2020-04-18 22:14:23 +00:00
2018-09-13 13:24:18 +00:00
To change this behavior use the flag `--watch-namespace` to limit the scope to a particular namespace.
!!! warning
2020-04-18 22:14:23 +00:00
If multiple Ingresses define paths for the same host, the ingress controller **merges the definitions** .
2018-09-13 13:24:18 +00:00
2020-05-01 14:41:53 +00:00
!!! danger
2020-08-19 14:47:28 +00:00
The [admission webhook ](https://kubernetes.io/docs/reference/access-authn-authz/extensible-admission-controllers/ ) requires connectivity between Kubernetes API server and the ingress controller.
2020-05-01 14:41:53 +00:00
In case [Network policies ](https://kubernetes.io/docs/concepts/services-networking/network-policies/ ) or additional firewalls, please allow access to port `8443` .
2020-05-20 22:53:47 +00:00
!!! attention
The first time the ingress controller starts, two [Jobs ](https://kubernetes.io/docs/concepts/workloads/controllers/jobs-run-to-completion/ ) create the SSL Certificate used by the admission webhook.
2021-05-06 21:02:40 +00:00
For this reason, there is an initial delay of up to two minutes until it is possible to create and validate Ingress definitions.
2020-05-20 22:53:47 +00:00
2021-05-06 21:02:40 +00:00
You can wait until it is ready to run the next command:
2020-05-20 22:53:47 +00:00
2021-05-06 21:02:40 +00:00
```yaml
kubectl wait --namespace ingress-nginx \
--for=condition=ready pod \
--selector=app.kubernetes.io/component=controller \
--timeout=120s
```
2020-05-20 22:53:47 +00:00
2020-04-18 22:14:23 +00:00
## Contents
2019-06-05 14:59:38 +00:00
2020-04-18 22:14:23 +00:00
- [Provider Specific Steps ](#provider-specific-steps )
2021-02-17 05:15:34 +00:00
- [Docker Desktop ](#docker-desktop )
2020-04-18 22:14:23 +00:00
- [minikube ](#minikube )
2021-01-11 15:53:36 +00:00
- [microk8s ](#microk8s )
2020-04-18 22:14:23 +00:00
- [AWS ](#aws )
- [GCE - GKE ](#gce-gke )
- [Azure ](#azure )
2020-04-29 22:56:40 +00:00
- [Digital Ocean ](#digital-ocean )
2020-09-10 09:46:37 +00:00
- [Scaleway ](#scaleway )
2021-04-23 14:25:43 +00:00
- [Exoscale ](#exoscale )
2021-02-18 01:59:53 +00:00
- [Oracle Cloud Infrastructure ](#oracle-cloud-infrastructure )
2020-04-18 22:14:23 +00:00
- [Bare-metal ](#bare-metal )
- [Verify installation ](#verify-installation )
- [Detect installed version ](#detect-installed-version )
- [Using Helm ](#using-helm )
2018-04-24 09:36:16 +00:00
2020-04-18 22:14:23 +00:00
### Provider Specific Steps
2018-04-24 09:36:16 +00:00
2021-02-17 05:15:34 +00:00
#### Docker Desktop
2018-04-24 09:36:16 +00:00
2021-02-17 05:15:34 +00:00
Kubernetes is available in Docker Desktop
- Mac, from [version 18.06.0-ce ](https://docs.docker.com/docker-for-mac/release-notes/#stable-releases-of-2018 )
- Windows, from [version 18.06.0-ce ](https://docs.docker.com/docker-for-windows/release-notes/#docker-community-edition-18060-ce-win70-2018-07-25 )
2018-04-24 09:36:16 +00:00
2019-06-05 14:59:38 +00:00
```console
2021-10-04 14:17:09 +00:00
kubectl apply -f https://raw.githubusercontent.com/kubernetes/ingress-nginx/controller-v1.0.3/deploy/static/provider/cloud/deploy.yaml
2019-06-05 14:59:38 +00:00
```
2018-04-24 09:36:16 +00:00
2018-07-05 10:11:21 +00:00
#### minikube
2018-04-24 09:36:16 +00:00
For standard usage:
```console
minikube addons enable ingress
```
2021-01-11 15:53:36 +00:00
#### microk8s
For standard usage:
```console
microk8s enable ingress
```
Please check the microk8s [documentation page ](https://microk8s.io/docs/addon-ingress )
2018-07-05 10:11:21 +00:00
#### AWS
2018-04-24 09:36:16 +00:00
2020-03-30 22:45:58 +00:00
In AWS we use a Network load balancer (NLB) to expose the NGINX Ingress controller behind a Service of `Type=LoadBalancer` .
2018-04-24 09:36:16 +00:00
2020-03-30 22:45:58 +00:00
##### Network Load Balancer (NLB)
2018-04-24 09:36:16 +00:00
2020-03-30 22:45:58 +00:00
```console
2021-10-04 14:17:09 +00:00
kubectl apply -f https://raw.githubusercontent.com/kubernetes/ingress-nginx/controller-v1.0.3/deploy/static/provider/aws/deploy.yaml
2020-03-30 22:45:58 +00:00
```
2018-04-24 09:36:16 +00:00
2020-04-18 22:14:23 +00:00
##### TLS termination in AWS Load Balancer (ELB)
In some scenarios is required to terminate TLS in the Load Balancer and not in the ingress controller.
2018-04-24 09:36:16 +00:00
2020-03-30 22:45:58 +00:00
For this purpose we provide a template:
2018-09-06 04:14:07 +00:00
2021-10-04 14:17:09 +00:00
- Download [deploy-tls-termination.yaml ](https://raw.githubusercontent.com/kubernetes/ingress-nginx/controller-v1.0.3/deploy/static/provider/aws/deploy-tls-termination.yaml )
2018-04-24 09:36:16 +00:00
2019-06-05 14:59:38 +00:00
```console
2021-10-04 14:17:09 +00:00
wget https://raw.githubusercontent.com/kubernetes/ingress-nginx/controller-v1.0.3/deploy/static/provider/aws/deploy-tls-termination.yaml
2019-04-30 16:45:58 +00:00
```
2020-04-18 22:14:23 +00:00
- Edit the file and change:
- VPC CIDR in use for the Kubernetes cluster:
`proxy-real-ip-cidr: XXX.XXX.XXX/XX`
- AWS Certificate Manager (ACM) ID
2018-04-24 09:36:16 +00:00
2020-04-18 22:14:23 +00:00
`arn:aws:acm:us-west-2:XXXXXXXX:certificate/XXXXXX-XXXXXXX-XXXXXXX-XXXXXXXX`
2018-04-24 09:36:16 +00:00
2020-04-18 22:14:23 +00:00
- Deploy the manifest:
2019-04-30 16:45:58 +00:00
2019-06-05 14:59:38 +00:00
```console
2020-03-30 22:45:58 +00:00
kubectl apply -f deploy-tls-termination.yaml
2019-04-30 16:45:58 +00:00
```
2020-03-30 22:45:58 +00:00
##### NLB Idle Timeouts
2018-04-24 09:36:16 +00:00
2020-09-04 14:59:38 +00:00
Idle timeout value for TCP flows is 350 seconds and [cannot be modified ](https://docs.aws.amazon.com/elasticloadbalancing/latest/network/network-load-balancers.html#connection-idle-timeout ).
2018-09-06 04:14:07 +00:00
2020-09-04 14:59:38 +00:00
For this reason, you need to ensure the [keepalive_timeout ](http://nginx.org/en/docs/http/ngx_http_core_module.html#keepalive_timeout ) value is configured less than 350 seconds to work as expected.
2018-09-06 04:14:07 +00:00
2020-08-26 03:35:50 +00:00
By default NGINX `keepalive_timeout` is set to `75s` .
2020-04-18 22:14:23 +00:00
2020-09-04 14:59:38 +00:00
More information with regards to timeouts can be found in the [official AWS documentation ](https://docs.aws.amazon.com/elasticloadbalancing/latest/network/network-load-balancers.html#connection-idle-timeout )
2018-04-24 09:36:16 +00:00
2019-03-10 13:13:34 +00:00
#### GCE-GKE
2018-04-24 09:36:16 +00:00
2020-04-18 22:14:23 +00:00
!!! info
Initialize your user as a cluster-admin with the following command:
```console
kubectl create clusterrolebinding cluster-admin-binding \
--clusterrole cluster-admin \
--user $(gcloud config get-value account)
```
2020-05-01 14:41:53 +00:00
!!! danger
2020-09-04 14:59:38 +00:00
For private clusters, you will need to either add an additional firewall rule that allows master nodes access to port `8443/tcp` on worker nodes, or change the existing rule that allows access to ports `80/tcp` , `443/tcp` and `10254/tcp` to also allow access to port `8443/tcp` .
2020-05-01 14:41:53 +00:00
See the [GKE documentation ](https://cloud.google.com/kubernetes-engine/docs/how-to/private-clusters#add_firewall_rules ) on adding rules and the [Kubernetes issue ](https://github.com/kubernetes/kubernetes/issues/79739 ) for more detail.
2019-06-05 14:59:38 +00:00
```console
2021-10-04 14:17:09 +00:00
kubectl apply -f https://raw.githubusercontent.com/kubernetes/ingress-nginx/controller-v1.0.3/deploy/static/provider/cloud/deploy.yaml
2019-06-05 14:59:38 +00:00
```
2018-04-24 09:36:16 +00:00
2020-05-01 14:41:53 +00:00
!!! failure Important
2020-04-18 22:14:23 +00:00
Proxy protocol is not supported in GCE/GKE
2018-04-24 09:36:16 +00:00
2018-07-05 10:11:21 +00:00
#### Azure
2018-04-24 09:36:16 +00:00
2019-06-05 14:59:38 +00:00
```console
2021-10-04 14:17:09 +00:00
kubectl apply -f https://raw.githubusercontent.com/kubernetes/ingress-nginx/controller-v1.0.3/deploy/static/provider/cloud/deploy.yaml
2019-06-05 14:59:38 +00:00
```
2018-04-24 09:36:16 +00:00
2021-01-13 00:21:55 +00:00
More information with regards to Azure annotations for ingress controller can be found in the [official AKS documentation ](https://docs.microsoft.com/en-us/azure/aks/ingress-internal-ip#create-an-ingress-controller ).
2020-04-29 22:56:40 +00:00
#### Digital Ocean
```console
2021-10-04 14:17:09 +00:00
kubectl apply -f https://raw.githubusercontent.com/kubernetes/ingress-nginx/controller-v1.0.3/deploy/static/provider/do/deploy.yaml
2020-04-29 22:56:40 +00:00
```
2020-09-10 09:46:37 +00:00
#### Scaleway
```console
2021-10-04 14:17:09 +00:00
kubectl apply -f https://raw.githubusercontent.com/kubernetes/ingress-nginx/controller-v1.0.3/deploy/static/provider/scw/deploy.yaml
2020-09-10 09:46:37 +00:00
```
2021-04-23 14:25:43 +00:00
#### Exoscale
```console
2021-08-07 00:07:29 +00:00
kubectl apply -f https://raw.githubusercontent.com/kubernetes/ingress-nginx/main/deploy/static/provider/exoscale/deploy.yaml
2021-04-23 14:25:43 +00:00
```
The full list of annotations supported by Exoscale is available in the Exoscale Cloud Controller Manager [documentation ](https://github.com/exoscale/exoscale-cloud-controller-manager/blob/master/docs/service-loadbalancer.md ).
2021-02-18 01:59:53 +00:00
#### Oracle Cloud Infrastructure
```console
2021-10-04 14:17:09 +00:00
kubectl apply -f https://raw.githubusercontent.com/kubernetes/ingress-nginx/controller-v1.0.3/deploy/static/provider/cloud/deploy.yaml
2021-02-18 01:59:53 +00:00
```
A [complete list of available annotations for Oracle Cloud Infrastructure ](https://github.com/oracle/oci-cloud-controller-manager/blob/master/docs/load-balancer-annotations.md ) can be found in the [OCI Cloud Controller Manager ](https://github.com/oracle/oci-cloud-controller-manager ) documentation.
2018-09-04 19:32:47 +00:00
#### Bare-metal
2018-04-24 09:36:16 +00:00
Using [NodePort ](https://kubernetes.io/docs/concepts/services-networking/service/#type-nodeport ):
2019-06-05 14:59:38 +00:00
```console
2021-10-04 14:17:09 +00:00
kubectl apply -f https://raw.githubusercontent.com/kubernetes/ingress-nginx/controller-v1.0.3/deploy/static/provider/baremetal/deploy.yaml
2019-06-05 14:59:38 +00:00
```
2021-01-11 15:53:36 +00:00
2020-12-07 10:34:25 +00:00
!!! tip
2020-12-15 06:48:35 +00:00
Applicable on kubernetes clusters deployed on bare-metal with generic Linux distro(Such as CentOs, Ubuntu ...).
2021-01-11 15:53:36 +00:00
!!! info
2018-11-22 02:24:34 +00:00
For extended notes regarding deployments on bare-metal, see [Bare-metal considerations ](./baremetal.md ).
2018-09-04 19:32:47 +00:00
2018-07-05 10:11:21 +00:00
### Verify installation
2018-04-24 09:36:16 +00:00
2018-07-05 10:11:21 +00:00
To check if the ingress controller pods have started, run the following command:
2018-04-24 09:36:16 +00:00
```console
2020-04-18 22:14:23 +00:00
kubectl get pods -n ingress-nginx \
-l app.kubernetes.io/name=ingress-nginx --watch
2018-04-24 09:36:16 +00:00
```
2020-04-18 22:14:23 +00:00
Once the ingress controller pods are running, you can cancel the command typing `Ctrl+C` .
2018-07-05 10:11:21 +00:00
Now, you are ready to create your first ingress.
### Detect installed version
2021-01-10 18:20:48 +00:00
To detect which version of the ingress controller is running, exec into the pod and run `nginx-ingress-controller --version` .
2018-04-24 09:36:16 +00:00
```console
2018-07-05 10:11:21 +00:00
POD_NAMESPACE=ingress-nginx
2020-06-28 09:43:27 +00:00
POD_NAME=$(kubectl get pods -n $POD_NAMESPACE -l app.kubernetes.io/name=ingress-nginx --field-selector=status.phase=Running -o jsonpath='{.items[0].metadata.name}')
2019-06-05 14:59:38 +00:00
2018-07-05 10:11:21 +00:00
kubectl exec -it $POD_NAME -n $POD_NAMESPACE -- /nginx-ingress-controller --version
2018-04-24 09:36:16 +00:00
```
2018-07-05 10:11:21 +00:00
## Using Helm
2018-04-24 09:36:16 +00:00
2020-11-24 21:12:24 +00:00
!!! attention
2021-01-10 18:20:48 +00:00
Only Helm v3 is supported
2020-11-24 21:12:24 +00:00
2020-03-30 22:45:58 +00:00
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` :
2018-04-24 09:36:16 +00:00
```console
2020-04-18 22:14:23 +00:00
helm repo add ingress-nginx https://kubernetes.github.io/ingress-nginx
2020-11-26 12:44:21 +00:00
helm repo update
2020-02-06 23:47:28 +00:00
2021-01-10 18:20:48 +00:00
helm install ingress-nginx ingress-nginx/ingress-nginx
2018-07-05 10:11:21 +00:00
```
2018-04-24 09:36:16 +00:00
2020-04-18 22:14:23 +00:00
## Detect installed version:
2018-04-24 09:36:16 +00:00
```console
2018-09-04 03:25:30 +00:00
POD_NAME=$(kubectl get pods -l app.kubernetes.io/name=ingress-nginx -o jsonpath='{.items[0].metadata.name}')
2018-07-05 10:11:21 +00:00
kubectl exec -it $POD_NAME -- /nginx-ingress-controller --version
2018-04-24 09:36:16 +00:00
```