ingress-nginx-helm/docs/deploy/index.md

253 lines
9.4 KiB
Markdown
Raw Normal View History

2018-04-24 09:36:16 +00:00
# Installation Guide
!!! attention
The default configuration watches Ingress object from **all namespaces**.
To change this behavior use the flag `--watch-namespace` to limit the scope to a particular namespace.
!!! warning
If multiple Ingresses define paths for the same host, the ingress controller **merges the definitions**.
!!! danger
The [admission webhook](https://kubernetes.io/docs/reference/access-authn-authz/extensible-admission-controllers/) requires connectivity between Kubernetes API server and the ingress controller.
In case [Network policies](https://kubernetes.io/docs/concepts/services-networking/network-policies/) or additional firewalls, please allow access to port `8443`.
!!! 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.
For this reason, there is an initial delay of up to two minutes until it is possible to create and validate Ingress definitions.
You can wait until it is ready to run the next command:
```yaml
kubectl wait --namespace ingress-nginx \
--for=condition=ready pod \
--selector=app.kubernetes.io/component=controller \
--timeout=120s
```
## Contents
- [Provider Specific Steps](#provider-specific-steps)
- [Docker Desktop](#docker-desktop)
- [minikube](#minikube)
- [microk8s](#microk8s)
- [AWS](#aws)
- [GCE - GKE](#gce-gke)
- [Azure](#azure)
2020-04-29 22:56:40 +00:00
- [Digital Ocean](#digital-ocean)
- [Scaleway](#scaleway)
2021-04-23 14:25:43 +00:00
- [Exoscale](#exoscale)
- [Oracle Cloud Infrastructure](#oracle-cloud-infrastructure)
- [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
### Provider Specific Steps
2018-04-24 09:36:16 +00:00
#### Docker Desktop
2018-04-24 09:36:16 +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
!!! attention
Before running the command at your terminal, make sure Kubernetes is enabled at Docker settings
```console
kubectl apply -f https://raw.githubusercontent.com/kubernetes/ingress-nginx/controller-v1.0.4/deploy/static/provider/cloud/deploy.yaml
```
2018-04-24 09:36:16 +00:00
#### minikube
2018-04-24 09:36:16 +00:00
For standard usage:
```console
minikube addons enable ingress
```
#### microk8s
For standard usage:
```console
microk8s enable ingress
```
Please check the microk8s [documentation page](https://microk8s.io/docs/addon-ingress)
#### 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
!!! info
The provided templates illustrate the setup for legacy in-tree service load balancer for AWS NLB.
AWS provides the documentation on how to use [Network load balancing on Amazon EKS](https://docs.aws.amazon.com/eks/latest/userguide/network-load-balancing.html) with [AWS Load Balancer Controller](https://github.com/kubernetes-sigs/aws-load-balancer-controller).
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
kubectl apply -f https://raw.githubusercontent.com/kubernetes/ingress-nginx/controller-v1.0.4/deploy/static/provider/aws/deploy.yaml
2020-03-30 22:45:58 +00:00
```
2018-04-24 09:36:16 +00:00
##### TLS termination in AWS Load Balancer (NLB)
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:
- Download [deploy-tls-termination.yaml](https://raw.githubusercontent.com/kubernetes/ingress-nginx/controller-v1.0.4/deploy/static/provider/aws/deploy-tls-termination.yaml)
2018-04-24 09:36:16 +00:00
```console
wget https://raw.githubusercontent.com/kubernetes/ingress-nginx/controller-v1.0.4/deploy/static/provider/aws/deploy-tls-termination.yaml
```
- 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
`arn:aws:acm:us-west-2:XXXXXXXX:certificate/XXXXXX-XXXXXXX-XXXXXXX-XXXXXXXX`
2018-04-24 09:36:16 +00:00
- Deploy the manifest:
```console
2020-03-30 22:45:58 +00:00
kubectl apply -f deploy-tls-termination.yaml
```
2020-03-30 22:45:58 +00:00
##### NLB Idle Timeouts
2018-04-24 09:36:16 +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).
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.
2020-08-26 03:35:50 +00:00
By default NGINX `keepalive_timeout` is set to `75s`.
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
#### GCE-GKE
2018-04-24 09:36:16 +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)
```
!!! danger
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`.
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.
```console
kubectl apply -f https://raw.githubusercontent.com/kubernetes/ingress-nginx/controller-v1.0.4/deploy/static/provider/cloud/deploy.yaml
```
2018-04-24 09:36:16 +00:00
!!! failure Important
Proxy protocol is not supported in GCE/GKE
2018-04-24 09:36:16 +00:00
#### Azure
2018-04-24 09:36:16 +00:00
```console
kubectl apply -f https://raw.githubusercontent.com/kubernetes/ingress-nginx/controller-v1.0.4/deploy/static/provider/cloud/deploy.yaml
```
2018-04-24 09:36:16 +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
kubectl apply -f https://raw.githubusercontent.com/kubernetes/ingress-nginx/controller-v1.0.4/deploy/static/provider/do/deploy.yaml
2020-04-29 22:56:40 +00:00
```
#### Scaleway
```console
kubectl apply -f https://raw.githubusercontent.com/kubernetes/ingress-nginx/controller-v1.0.4/deploy/static/provider/scw/deploy.yaml
```
2021-04-23 14:25:43 +00:00
#### Exoscale
```console
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).
#### Oracle Cloud Infrastructure
```console
kubectl apply -f https://raw.githubusercontent.com/kubernetes/ingress-nginx/controller-v1.0.4/deploy/static/provider/cloud/deploy.yaml
```
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/#nodeport):
2018-04-24 09:36:16 +00:00
```console
kubectl apply -f https://raw.githubusercontent.com/kubernetes/ingress-nginx/controller-v1.0.4/deploy/static/provider/baremetal/deploy.yaml
```
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 ...).
!!! info
For extended notes regarding deployments on bare-metal, see [Bare-metal considerations](./baremetal.md).
2018-09-04 19:32:47 +00:00
### Verify installation
2018-04-24 09:36:16 +00:00
To check if the ingress controller pods have started, run the following command:
2018-04-24 09:36:16 +00:00
```console
kubectl get pods -n ingress-nginx \
-l app.kubernetes.io/name=ingress-nginx --watch
2018-04-24 09:36:16 +00:00
```
Once the ingress controller pods are running, you can cancel the command typing `Ctrl+C`.
Now, you are ready to create your first ingress.
### Detect installed version
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
POD_NAMESPACE=ingress-nginx
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}')
kubectl exec -it $POD_NAME -n $POD_NAMESPACE -- /nginx-ingress-controller --version
2018-04-24 09:36:16 +00:00
```
## Using Helm
2018-04-24 09:36:16 +00:00
2020-11-24 21:12:24 +00:00
!!! attention
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
helm repo add ingress-nginx https://kubernetes.github.io/ingress-nginx
2020-11-26 12:44:21 +00:00
helm repo update
helm install ingress-nginx ingress-nginx/ingress-nginx
```
2018-04-24 09:36:16 +00:00
[For multiple NGINX Ingress controllers](https://kubernetes.github.io/ingress-nginx/#how-to-easily-install-multiple-instances-of-the-ingress-nginx-controller-in-the-same-cluster)
## Detect installed version:
2018-04-24 09:36:16 +00:00
```console
POD_NAME=$(kubectl get pods -l app.kubernetes.io/name=ingress-nginx -o jsonpath='{.items[0].metadata.name}')
kubectl exec -it $POD_NAME -- /nginx-ingress-controller --version
2018-04-24 09:36:16 +00:00
```