From fb694f35f6fe5951cf695b313205334bcf9da371 Mon Sep 17 00:00:00 2001 From: Simon Timms Date: Sun, 13 Oct 2024 12:27:45 -0600 Subject: [PATCH] Update version of cert manager The listed version of the certificate manager is outdated and actually doesn't work with the rest of the article. --- ...-controller-letsencrypt-certificate-application-gateway.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/articles/application-gateway/ingress-controller-letsencrypt-certificate-application-gateway.md b/articles/application-gateway/ingress-controller-letsencrypt-certificate-application-gateway.md index ef1b13ff11544..50bd411d3a339 100644 --- a/articles/application-gateway/ingress-controller-letsencrypt-certificate-application-gateway.md +++ b/articles/application-gateway/ingress-controller-letsencrypt-certificate-application-gateway.md @@ -31,7 +31,7 @@ Use the following steps to install [cert-manager](https://docs.cert-manager.io) #!/bin/bash # Install the CustomResourceDefinition resources separately - kubectl apply -f https://github.com/cert-manager/cert-manager/releases/download/v1.10.1/cert-manager.crds.yaml + kubectl apply -f https://github.com/cert-manager/cert-manager/releases/download/v1.16.1/cert-manager.crds.yaml # Create the namespace for cert-manager kubectl create namespace cert-manager @@ -50,7 +50,7 @@ Use the following steps to install [cert-manager](https://docs.cert-manager.io) helm install \ cert-manager jetstack/cert-manager \ --namespace cert-manager \ - --version v1.10.1 \ + --version v1.16.1 \ # --set installCRDs=true # To automatically install and manage the CRDs as part of your Helm release,