From 2de9a165cb8a4cedf5722e1e4a6d69a378d3129b Mon Sep 17 00:00:00 2001 From: Ryan Gibbons Date: Mon, 24 May 2021 19:15:36 -0500 Subject: [PATCH 1/4] Updating example of "Customizing your Ingress" This is a bit deceiving in the current form has the path for cert-manager has changed. Other changes include: * the changing the value to more identifiable suggestion * Adding ingress.tls.source to secret which has the template skip the setting of Issuer for the ingress, allowing ClusterIssuer to take effect. --- .../install-rancher-on-k8s/chart-options/_index.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/content/rancher/v2.5/en/installation/install-rancher-on-k8s/chart-options/_index.md b/content/rancher/v2.5/en/installation/install-rancher-on-k8s/chart-options/_index.md index 68bdf90f03e..9ee59ac0aef 100644 --- a/content/rancher/v2.5/en/installation/install-rancher-on-k8s/chart-options/_index.md +++ b/content/rancher/v2.5/en/installation/install-rancher-on-k8s/chart-options/_index.md @@ -128,7 +128,8 @@ To customize or use a different ingress with Rancher server you can set your own Example on setting a custom certificate issuer: ```plain ---set ingress.extraAnnotations.'certmanager\.k8s\.io/cluster-issuer'=ca-key-pair +--set ingress.tls.source=secret +--set ingress.extraAnnotations.'cert-manager\.io/cluster-issuer'=issuer-name ``` Example on setting a static proxy header with `ingress.configurationSnippet`. This value is parsed like a template so variables can be used. From 31895c8403e2435b3f6c744c72813b79072c5978 Mon Sep 17 00:00:00 2001 From: Jennifer Travinski Date: Tue, 11 Jan 2022 15:53:20 +0000 Subject: [PATCH 2/4] Updated command for 2.0 - 2.4 --- .../installation/install-rancher-on-k8s/chart-options/_index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/rancher/v2.0-v2.4/en/installation/install-rancher-on-k8s/chart-options/_index.md b/content/rancher/v2.0-v2.4/en/installation/install-rancher-on-k8s/chart-options/_index.md index ff6631bef9a..f027000a6cb 100644 --- a/content/rancher/v2.0-v2.4/en/installation/install-rancher-on-k8s/chart-options/_index.md +++ b/content/rancher/v2.0-v2.4/en/installation/install-rancher-on-k8s/chart-options/_index.md @@ -126,7 +126,7 @@ To customize or use a different ingress with Rancher server you can set your own Example on setting a custom certificate issuer: ```plain ---set ingress.extraAnnotations.'certmanager\.k8s\.io/cluster-issuer'=ca-key-pair +--set ingress.extraAnnotations.'cert-manager\.io/cluster-issuer'=issuer-name ``` Example on setting a static proxy header with `ingress.configurationSnippet`. This value is parsed like a template so variables can be used. From 322b9b65610e4f6abb9809a1d5e37dce0197452d Mon Sep 17 00:00:00 2001 From: Jennifer Travinski Date: Tue, 11 Jan 2022 15:53:35 +0000 Subject: [PATCH 3/4] Updated command for 2.6 --- .../installation/install-rancher-on-k8s/chart-options/_index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/rancher/v2.6/en/installation/install-rancher-on-k8s/chart-options/_index.md b/content/rancher/v2.6/en/installation/install-rancher-on-k8s/chart-options/_index.md index 9ce31bc66f9..4436fcfe473 100644 --- a/content/rancher/v2.6/en/installation/install-rancher-on-k8s/chart-options/_index.md +++ b/content/rancher/v2.6/en/installation/install-rancher-on-k8s/chart-options/_index.md @@ -137,7 +137,7 @@ To customize or use a different ingress with Rancher server you can set your own Example on setting a custom certificate issuer: ```plain ---set ingress.extraAnnotations.'certmanager\.k8s\.io/cluster-issuer'=ca-key-pair +--set ingress.extraAnnotations.'cert-manager\.io/cluster-issuer'=issuer-name ``` Example on setting a static proxy header with `ingress.configurationSnippet`. This value is parsed like a template so variables can be used. From 385563f867bfff0358abcce19c68146d446768f2 Mon Sep 17 00:00:00 2001 From: Jennifer Travinski Date: Tue, 11 Jan 2022 15:55:58 +0000 Subject: [PATCH 4/4] Removed command setting ingress.tls.source to secret --- .../installation/install-rancher-on-k8s/chart-options/_index.md | 1 - 1 file changed, 1 deletion(-) diff --git a/content/rancher/v2.5/en/installation/install-rancher-on-k8s/chart-options/_index.md b/content/rancher/v2.5/en/installation/install-rancher-on-k8s/chart-options/_index.md index 56b1ccd7514..e1572af146b 100644 --- a/content/rancher/v2.5/en/installation/install-rancher-on-k8s/chart-options/_index.md +++ b/content/rancher/v2.5/en/installation/install-rancher-on-k8s/chart-options/_index.md @@ -124,7 +124,6 @@ To customize or use a different ingress with Rancher server you can set your own Example on setting a custom certificate issuer: ```plain ---set ingress.tls.source=secret --set ingress.extraAnnotations.'cert-manager\.io/cluster-issuer'=issuer-name ```