Kubernetes NGINX Ingress Controller Failure using Helm on AKS
After reaching out to the MS document site feedback, they provided me with the following fix for this document
https://github.com/MicrosoftDocs/azure-docs/issues/80321
After rolling back and reapplying the modified changes, the command was successful. The key was to remove the pod using the helm uninstall command:
helm uninstall nginx-ingress --namespace ingress-basic
Then removing the ACR repositories from your ACR:
jettech/kube-webhook-certgen
defaultbackend-amd64
jetstack/cert-manager-controller
jetstack/cert-manager-webhook
jetstack/cert-manager-cainjector
which were created with the "az acr import" command and then rerunning the modified commands.
Hopefully someone finds this of value