Skip to content

Latest commit

 

History

History

complete-example

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 

Example

In this example we deploy the NGINX or NGINX Plus Ingress controller, a simple web application and then configure load balancing for that application using the Ingress resource.

Running the Example

1. Deploy the Ingress Controller

  1. Follow the installation instructions to deploy the Ingress controller.

  2. Save the public IP address of the Ingress controller into a shell variable:

    $ IC_IP=XXX.YYY.ZZZ.III
    
  3. Save the HTTPS port of the Ingress controller into a shell variable:

    $ IC_HTTPS_PORT=<port number>
    

2. Deploy the Cafe Application

Create the coffee and the tea deployments and services:

$ kubectl create -f cafe.yaml

3. Configure Load Balancing

  1. Create a secret with an SSL certificate and a key:

    $ kubectl create -f cafe-secret.yaml
    
  2. Create an Ingress resource (for Kubernetes >= 1.18, uncomment the ingressClassName field in the YAML file):

    $ kubectl create -f cafe-ingress.yaml
    

4. Test the Application

  1. To access the application, curl the coffee and the tea services. We'll use curl's --insecure option to turn off certificate verification of our self-signed certificate and the --resolve option to set the Host header of a request with cafe.example.com

    To get coffee:

    $ curl --resolve cafe.example.com:$IC_HTTPS_PORT:$IC_IP https://cafe.example.com:$IC_HTTPS_PORT/coffee --insecure
    Server address: 10.12.0.18:80
    Server name: coffee-7586895968-r26zn
    ...
    

    If your prefer tea:

    $ curl --resolve cafe.example.com:$IC_HTTPS_PORT:$IC_IP https://cafe.example.com:$IC_HTTPS_PORT/tea --insecure
    Server address: 10.12.0.19:80
    Server name: tea-7cd44fcb4d-xfw2x
    ...
    
  2. You can view an NGINX status page, either stub_status for NGINX, or the Live Activity Monitoring Dashboard for NGINX Plus:

    1. Follow the instructions to access the status page.
    2. For NGINX Plus, If you go to the Upstream tab, you'll see: dashboard