From a15a1c57a5794326570ebc6b1c133e3e72f0a294 Mon Sep 17 00:00:00 2001 From: Saylor Berman Date: Thu, 13 Mar 2025 14:17:53 -0600 Subject: [PATCH] Update NGF cert-manager docs cert-manager has updated their installation command, so we need to update our docs to reflect that change. --- .../how-to/traffic-security/integrating-cert-manager.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/content/ngf/how-to/traffic-security/integrating-cert-manager.md b/content/ngf/how-to/traffic-security/integrating-cert-manager.md index a8ec6e326..751e06329 100644 --- a/content/ngf/how-to/traffic-security/integrating-cert-manager.md +++ b/content/ngf/how-to/traffic-security/integrating-cert-manager.md @@ -68,9 +68,10 @@ The first step is to deploy cert-manager onto the cluster. cert-manager jetstack/cert-manager \ --namespace cert-manager \ --create-namespace \ - --version v1.12.0 \ - --set installCRDs=true \ - --set "extraArgs={--feature-gates=ExperimentalGatewayAPISupport=true}" + --set config.apiVersion="controller.config.cert-manager.io/v1alpha1" \ + --set config.kind="ControllerConfiguration" \ + --set config.enableGatewayAPI=true \ + --set crds.enabled=true ``` ---