Updated on 2024-10-14 GMT+08:00

nginx-ingress Upgrade

Check Items

  • Check item 1: Check whether there is an Nginx Ingress route whose ingress type is not specified (kubernetes.io/ingress.class: nginx is not added to annotations) in the cluster.
  • Check item 2: Check whether the DefaultBackend Service specified by the Nginx Ingress Controller backend is available.

Fault Locating

For Check Item 1

For Nginx Ingress, check the YAML. If the ingress type is not specified in the YAML file and the ingress is managed by the Nginx Ingress Controller, the ingress is at risk.

  1. Check the Ingress type.

    Run the following command:
    kubectl get ingress <ingress-name> -oyaml | grep -E ' kubernetes.io/ingress.class: | ingressClassName:'
    • Fault scenario: If the command output is empty, the Ingress type is not specified.
    • Normal scenario: The command output is not empty, indicating that the Ingress type has been specified by annotations or ingressClassName.

  2. Ensure that the Ingress is managed by the Nginx Ingress Controller. The LoadBalancer Ingresses are not affected by this issue.

    • For clusters of v1.19, confirm this issue using managedFields.
      kubectl get ingress <ingress-name> -oyaml | grep 'manager: nginx-ingress-controller'

    • For clusters of other versions, check the logs of the Nginx Ingress Controller pod.
       kubectl logs -nkube-system cceaddon-nginx-ingress-controller-545db6b4f7-bv74t | grep 'updating Ingress status'

    If the fault persists, contact technical support personnel.

For Check Item 2

  1. View the DefaultBackend Service in the namespace where the Nginx Ingress Controller is deployed.

    kubectl get pod cceaddon-nginx-ingress-<controller-name>-controller-*** -n <namespace> -oyaml | grep 'default-backend'

    In the preceding command, cceaddon-nginx-ingress-<controller-name>-controller-*** is the controller pod name, <controller-name> is the controller name specified during add-on installation, and <namespace> is the namespace where the controller is deployed.

    Command output:

    - '--default-backend-service=<namespace>/<backend-svc-name>'

    In the preceding command, <backend-svc-name> is the name of the DefaultBackend Service for the Nginx Ingress Controller.

  2. Check whether the DefaultBackend Service of the Nginx Ingress Controller is available.

    kubectl get svc <backend-svc-name> -n <namespace>

    If the Service is unavailable, this check item failed.

Solution

Add an annotation to the Nginx ingresses as follows:

kubectl annotate ingress <ingress-name> kubernetes.io/ingress.class=nginx

There is no need to add this annotation to LoadBalancer ingresses. Verify that these ingresses are managed by Nginx Ingress Controller.