Deploy NGINX Ingress Controller¶
In this section you will configure and deploy the NGINX Ingress Controller and expose it using an Application Load Balancer that will terminate TLS with an ACM certificate.
Note
We recommend that you use a new NGINX Ingress Controller dedicated for serving. In this case, proceed to follow this guide.
Otherwise, if you have exposed EKF with ALB and you wish to use the NGINX Ingress Controller you have already created, expand the box below and follow the fast-forward path.
Fast Forward
If you have already deployed NGINX Ingress Controller for serving, expand this box to fast-forward.
Specify the list of trusted inbound CIDRs of your ALB:
root@rok-tools:~# export SERVING_EKS_ALB_NGINX_TRUSTED_CIDRS=<CIDRS>Specify the address of the ALB:
root@rok-tools:~# export SERVING_EKS_ALB_NGINX_HOSTNAME=<HOSTNAME>Go to your GitOps repository, inside your
rok-tools
management environment:root@rok-tools:~# cd ~/ops/deploymentsSave your state:
root@rok-tools:~/ops/deployments# j2 deploy/env.serving-eks-alb-nginx.j2 \ > -o deploy/env.serving-eks-alb-nginxCommit your changes:
root@rok-tools:~/ops/deployments# git commit -am "Deploy NGINX Ingress Controller for Serving"Proceed to the Verify section.
See also
Choose one of the following options to deploy NGINX Ingress Controller:
- Option 1: Deploy NGINX Ingress Controller Automatically (preferred).
- Option 2: Deploy NGINX Ingress Controller Manually.
Overview
What You’ll Need¶
- A configured management environment.
- Your clone of the Arrikto GitOps repository.
- An existing EKS cluster.
- An existing ACM certificate.
- A working AWS Load Balancer Controller.
- A set of configured ALB subnets.
Option 1: Deploy NGINX Ingress Controller Automatically (preferred)¶
Under construction
This section is a work in progress. Use Option 2: Deploy NGINX Ingress Controller Manually instead.
Deploy NGINX Ingress Controller by following the on-screen instructions on
the rok-deploy
user interface.
If rok-deploy
is not already running, start it with:
Proceed to the Summary section.
Option 2: Deploy NGINX Ingress Controller Manually¶
If you want to deploy NGINX Ingress Controller manually, follow the instructions below.
Procedure¶
Go to your GitOps repository, inside your
rok-tools
management environment:root@rok-tools:~# cd ~/ops/deploymentsRestore the required context from previous sections:
root@rok-tools:~/ops/deployments# source <(cat deploy/env.{serving-eks-alb-subnets,serving-eks-alb-acm})root@rok-tools:~/ops/deployments# export SERVING_EKS_ALB_SCHEME SERVING_EKS_ALB_ACM_SUBDOMAIN \ > SERVING_EKS_ALB_ACM_CERTEdit
rok/nginx-ingress-controller-serving/overlays/deploy/kustomization.yaml
and useingress-alb
as base:bases: #- ../arrikto - ../ingress-alb #- ../service-elb #- ../service-azurelb #- ../service-gclbEdit
rok/nginx-ingress-controller-serving/overlays/deploy/kustomization.yaml
and enable only theingress-alb
andservice-alb
patches:patches: - path: patches/ingress-alb.yaml - path: patches/service-alb.yaml #- path: patches/service-elb.yaml #- path: patches/service-azurelb.yaml #- path: patches/service-gclb.yamlEnable the firewall in your Application Load Balancer and allow access only to specific CIDRs. Choose one of the following options, based on your ALB scheme:
Specify the list of trusted inbound CIDRs for the ALB:
root@rok-tools:~/ops/deployments# export SERVING_EKS_ALB_NGINX_TRUSTED_CIDRS=<CIDRS>Replace
<CIDRS>
with the desired value. Leave the default value of0.0.0.0/0
if you want to allow access for everyone. For example:root@rok-tools:~/ops/deployments# export SERVING_EKS_ALB_NGINX_TRUSTED_CIDRS="0.0.0.0/0"See also
Specify the list of trusted inbound CIDRs for the ALB:
root@rok-tools:~/ops/deployments# export SERVING_EKS_ALB_NGINX_TRUSTED_CIDRS=<CIDRS>Replace
<CIDRS>
with the desired value. Leave the default value of0.0.0.0/0
if you want to allow access for everyone within the VPC. For example:root@rok-tools:~/ops/deployments# export SERVING_EKS_ALB_NGINX_TRUSTED_CIDRS="0.0.0.0/0"Note
Note that, since the Application Load Balancer will be an internal one, it already accepts connections only from within the VPC. Use the trusted CIDRs as an extra access control mechanism for controlling connections from within the VPC.
Note
You can set multiple trusted inbound CIDRs by specifying them as a string list (comma separated list). For more information, see the official AWS Load Balancer Controller docs.
Render the NGINX Ingress Controller ingress patch template with the variables you have specified:
root@rok-tools:~/ops/deployments# j2 \ > rok/nginx-ingress-controller-serving/overlays/deploy/patches/ingress-alb.yaml.j2 \ > -o rok/nginx-ingress-controller-serving/overlays/deploy/patches/ingress-alb.yamlDeploy NGINX Ingress Controller:
root@rok-tools:~/ops/deployments# rok-deploy --apply rok/nginx-ingress-controller-serving/overlays/deployWait until the AWS Load Balancer Controller provisions the necessary AWS resources:
$ kubectl get ingress -n ingress-nginx-serving NAME HOSTS ADDRESS PORTS AGE ingress-nginx * e53a524a-ingressnginx-ingr-1234-592794601.eu-central-1.elb.amazonaws.com 80 64dTroubleshooting
The Ingress object does not get an ADDRESS.
Inspect the logs of
aws-load-balancer-controller
deployment in thekube-system
namespace:root@rok-tools:~/ops/deployments# kubectl logs -n kube-system deploy/aws-load-balancer-controllerIf you see a message like the following:
"msg"="Reconciler error" "error"="failed to build LoadBalancer configuration due to retrieval of subnets failed to resolve 2 qualified subnets.it means that your subnets are misconfigured.
Verify your subnets configuration.
Obtain the address of the ALB:
root@rok-tools:~/ops/deployments# export SERVING_EKS_ALB_NGINX_HOSTNAME=$(kubectl get ingress \ > -n ingress-nginx-serving ingress-nginx -o json \ > | jq -r '.status.loadBalancer.ingress[].hostname')Render the NGINX Ingress Controller service patch template with the variables you have specified:
root@rok-tools:~/ops/deployments# j2 \ > rok/nginx-ingress-controller-serving/overlays/deploy/patches/service-alb.yaml.j2 \ > -o rok/nginx-ingress-controller-serving/overlays/deploy/patches/service-alb.yamlSave your state:
root@rok-tools:~/ops/deployments# j2 deploy/env.serving-eks-alb-nginx.j2 \ > -o deploy/env.serving-eks-alb-nginxCommit your changes:
root@rok-tools:~/ops/deployments# git commit -am "Deploy NGINX Ingress Controller for Serving"Re-apply the manifests:
root@rok-tools:~/ops/deployments# rok-deploy --apply rok/nginx-ingress-controller-serving/overlays/deploy
Verify¶
Verify that NGINX Ingress Controller is up-and-running. Check pod status and verify field STATUS is Running and field READY is 1/1:
root@rok-tools:~# kubectl -n ingress-nginx-serving get pods NAME READY STATUS RESTARTS AGE nginx-ingress-controller-7f74f657bd-ln59l 1/1 Running 0 1mVerify that the ALB Ingress has obtained an address:
root@rok-tools:~# kubectl -n ingress-nginx-serving get ingress NAME CLASS HOSTS ADDRESS PORT(S) AGE ingress-nginx <none> * e53a524a-ingressnginx-ingr-8872-592794601.us-east-1.elb.amazonaws.com 80 1mVerify that the
ingress-nginx
service has an external IP equal to the address of the ALB:root@rok-tools:~# kubectl -n ingress-nginx-serving get service ingress-nginx NAME TYPE CLUSTER-IP EXTERNAL-IP PORT(S) AGE ingress-nginx ExternalName <none> e53a524a-ingressnginx-ingr-8872-592794601.us-east-1.elb.amazonaws.com <none> 1m