Skip to content

Commit e1d7bbe

Browse files
committed
fix: inrgess nginx acme tls challenge
1 parent d825db9 commit e1d7bbe

File tree

15 files changed

+240
-15
lines changed

15 files changed

+240
-15
lines changed

pages/public_cloud/containers_orchestration/managed_kubernetes/installing-cert-manager/guide.de-de.md

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,16 +48,31 @@ Hang tight while we grab the latest from your chart repositories...
4848
Update Complete. ⎈Happy Helming!⎈
4949
```
5050

51+
Create a `values.yaml` file with the following content:
52+
53+
```yaml
54+
config:
55+
featureGates:
56+
# Disable the use of Exact PathType in Ingress resources, to work around a bug in ingress-nginx
57+
# https://github.com/kubernetes/ingress-nginx/issues/11176
58+
ACMEHTTP01IngressPathTypeExact: false
59+
```
60+
5161
Install the latest version of cert-manager with `helm install` command:
5262

5363
```bash
5464
helm install \
5565
cert-manager jetstack/cert-manager \
5666
--namespace cert-manager \
5767
--create-namespace \
58-
--set installCRDs=true
68+
--set installCRDs=true \
69+
--values values.yaml
5970
```
6071

72+
> [!primary]
73+
>
74+
> `values.yaml` file is necessary to "fix" blocking [ingress-nginx 1.18+ changes](https://cert-manager.io/docs/releases/release-notes/release-notes-1.18/#acme-http01-challenge-paths-now-use-pathtype-exact-in-ingress-routes).
75+
6176
This command will install the latest version of cert-manager, create a new `cert-manager` namespace and install the new CRD (CustomResourceDefinitions):
6277

6378
```console

pages/public_cloud/containers_orchestration/managed_kubernetes/installing-cert-manager/guide.en-asia.md

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,16 +48,31 @@ Hang tight while we grab the latest from your chart repositories...
4848
Update Complete. ⎈Happy Helming!⎈
4949
```
5050

51+
Create a `values.yaml` file with the following content:
52+
53+
```yaml
54+
config:
55+
featureGates:
56+
# Disable the use of Exact PathType in Ingress resources, to work around a bug in ingress-nginx
57+
# https://github.com/kubernetes/ingress-nginx/issues/11176
58+
ACMEHTTP01IngressPathTypeExact: false
59+
```
60+
5161
Install the latest version of cert-manager with `helm install` command:
5262

5363
```bash
5464
helm install \
5565
cert-manager jetstack/cert-manager \
5666
--namespace cert-manager \
5767
--create-namespace \
58-
--set installCRDs=true
68+
--set installCRDs=true \
69+
--values values.yaml
5970
```
6071

72+
> [!primary]
73+
>
74+
> `values.yaml` file is necessary to "fix" blocking [ingress-nginx 1.18+ changes](https://cert-manager.io/docs/releases/release-notes/release-notes-1.18/#acme-http01-challenge-paths-now-use-pathtype-exact-in-ingress-routes).
75+
6176
This command will install the latest version of cert-manager, create a new `cert-manager` namespace and install the new CRD (CustomResourceDefinitions):
6277

6378
```console

pages/public_cloud/containers_orchestration/managed_kubernetes/installing-cert-manager/guide.en-au.md

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,16 +48,31 @@ Hang tight while we grab the latest from your chart repositories...
4848
Update Complete. ⎈Happy Helming!⎈
4949
```
5050

51+
Create a `values.yaml` file with the following content:
52+
53+
```yaml
54+
config:
55+
featureGates:
56+
# Disable the use of Exact PathType in Ingress resources, to work around a bug in ingress-nginx
57+
# https://github.com/kubernetes/ingress-nginx/issues/11176
58+
ACMEHTTP01IngressPathTypeExact: false
59+
```
60+
5161
Install the latest version of cert-manager with `helm install` command:
5262

5363
```bash
5464
helm install \
5565
cert-manager jetstack/cert-manager \
5666
--namespace cert-manager \
5767
--create-namespace \
58-
--set installCRDs=true
68+
--set installCRDs=true \
69+
--values values.yaml
5970
```
6071

72+
> [!primary]
73+
>
74+
> `values.yaml` file is necessary to "fix" blocking [ingress-nginx 1.18+ changes](https://cert-manager.io/docs/releases/release-notes/release-notes-1.18/#acme-http01-challenge-paths-now-use-pathtype-exact-in-ingress-routes).
75+
6176
This command will install the latest version of cert-manager, create a new `cert-manager` namespace and install the new CRD (CustomResourceDefinitions):
6277

6378
```console

pages/public_cloud/containers_orchestration/managed_kubernetes/installing-cert-manager/guide.en-ca.md

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,16 +48,31 @@ Hang tight while we grab the latest from your chart repositories...
4848
Update Complete. ⎈Happy Helming!⎈
4949
```
5050

51+
Create a `values.yaml` file with the following content:
52+
53+
```yaml
54+
config:
55+
featureGates:
56+
# Disable the use of Exact PathType in Ingress resources, to work around a bug in ingress-nginx
57+
# https://github.com/kubernetes/ingress-nginx/issues/11176
58+
ACMEHTTP01IngressPathTypeExact: false
59+
```
60+
5161
Install the latest version of cert-manager with `helm install` command:
5262

5363
```bash
5464
helm install \
5565
cert-manager jetstack/cert-manager \
5666
--namespace cert-manager \
5767
--create-namespace \
58-
--set installCRDs=true
68+
--set installCRDs=true \
69+
--values values.yaml
5970
```
6071

72+
> [!primary]
73+
>
74+
> `values.yaml` file is necessary to "fix" blocking [ingress-nginx 1.18+ changes](https://cert-manager.io/docs/releases/release-notes/release-notes-1.18/#acme-http01-challenge-paths-now-use-pathtype-exact-in-ingress-routes).
75+
6176
This command will install the latest version of cert-manager, create a new `cert-manager` namespace and install the new CRD (CustomResourceDefinitions):
6277

6378
```console

pages/public_cloud/containers_orchestration/managed_kubernetes/installing-cert-manager/guide.en-gb.md

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,16 +48,31 @@ Hang tight while we grab the latest from your chart repositories...
4848
Update Complete. ⎈Happy Helming!⎈
4949
```
5050

51+
Create a `values.yaml` file with the following content:
52+
53+
```yaml
54+
config:
55+
featureGates:
56+
# Disable the use of Exact PathType in Ingress resources, to work around a bug in ingress-nginx
57+
# https://github.com/kubernetes/ingress-nginx/issues/11176
58+
ACMEHTTP01IngressPathTypeExact: false
59+
```
60+
5161
Install the latest version of cert-manager with `helm install` command:
5262

5363
```bash
5464
helm install \
5565
cert-manager jetstack/cert-manager \
5666
--namespace cert-manager \
5767
--create-namespace \
58-
--set installCRDs=true
68+
--set installCRDs=true \
69+
--values values.yaml
5970
```
6071

72+
> [!primary]
73+
>
74+
> `values.yaml` file is necessary to "fix" blocking [ingress-nginx 1.18+ changes](https://cert-manager.io/docs/releases/release-notes/release-notes-1.18/#acme-http01-challenge-paths-now-use-pathtype-exact-in-ingress-routes).
75+
6176
This command will install the latest version of cert-manager, create a new `cert-manager` namespace and install the new CRD (CustomResourceDefinitions):
6277

6378
```console

pages/public_cloud/containers_orchestration/managed_kubernetes/installing-cert-manager/guide.en-ie.md

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,16 +48,31 @@ Hang tight while we grab the latest from your chart repositories...
4848
Update Complete. ⎈Happy Helming!⎈
4949
```
5050

51+
Create a `values.yaml` file with the following content:
52+
53+
```yaml
54+
config:
55+
featureGates:
56+
# Disable the use of Exact PathType in Ingress resources, to work around a bug in ingress-nginx
57+
# https://github.com/kubernetes/ingress-nginx/issues/11176
58+
ACMEHTTP01IngressPathTypeExact: false
59+
```
60+
5161
Install the latest version of cert-manager with `helm install` command:
5262

5363
```bash
5464
helm install \
5565
cert-manager jetstack/cert-manager \
5666
--namespace cert-manager \
5767
--create-namespace \
58-
--set installCRDs=true
68+
--set installCRDs=true \
69+
--values values.yaml
5970
```
6071

72+
> [!primary]
73+
>
74+
> `values.yaml` file is necessary to "fix" blocking [ingress-nginx 1.18+ changes](https://cert-manager.io/docs/releases/release-notes/release-notes-1.18/#acme-http01-challenge-paths-now-use-pathtype-exact-in-ingress-routes).
75+
6176
This command will install the latest version of cert-manager, create a new `cert-manager` namespace and install the new CRD (CustomResourceDefinitions):
6277

6378
```console

pages/public_cloud/containers_orchestration/managed_kubernetes/installing-cert-manager/guide.en-sg.md

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,16 +48,31 @@ Hang tight while we grab the latest from your chart repositories...
4848
Update Complete. ⎈Happy Helming!⎈
4949
```
5050

51+
Create a `values.yaml` file with the following content:
52+
53+
```yaml
54+
config:
55+
featureGates:
56+
# Disable the use of Exact PathType in Ingress resources, to work around a bug in ingress-nginx
57+
# https://github.com/kubernetes/ingress-nginx/issues/11176
58+
ACMEHTTP01IngressPathTypeExact: false
59+
```
60+
5161
Install the latest version of cert-manager with `helm install` command:
5262

5363
```bash
5464
helm install \
5565
cert-manager jetstack/cert-manager \
5666
--namespace cert-manager \
5767
--create-namespace \
58-
--set installCRDs=true
68+
--set installCRDs=true \
69+
--values values.yaml
5970
```
6071

72+
> [!primary]
73+
>
74+
> `values.yaml` file is necessary to "fix" blocking [ingress-nginx 1.18+ changes](https://cert-manager.io/docs/releases/release-notes/release-notes-1.18/#acme-http01-challenge-paths-now-use-pathtype-exact-in-ingress-routes).
75+
6176
This command will install the latest version of cert-manager, create a new `cert-manager` namespace and install the new CRD (CustomResourceDefinitions):
6277

6378
```console

pages/public_cloud/containers_orchestration/managed_kubernetes/installing-cert-manager/guide.en-us.md

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,16 +48,31 @@ Hang tight while we grab the latest from your chart repositories...
4848
Update Complete. ⎈Happy Helming!⎈
4949
```
5050

51+
Create a `values.yaml` file with the following content:
52+
53+
```yaml
54+
config:
55+
featureGates:
56+
# Disable the use of Exact PathType in Ingress resources, to work around a bug in ingress-nginx
57+
# https://github.com/kubernetes/ingress-nginx/issues/11176
58+
ACMEHTTP01IngressPathTypeExact: false
59+
```
60+
5161
Install the latest version of cert-manager with `helm install` command:
5262

5363
```bash
5464
helm install \
5565
cert-manager jetstack/cert-manager \
5666
--namespace cert-manager \
5767
--create-namespace \
58-
--set installCRDs=true
68+
--set installCRDs=true \
69+
--values values.yaml
5970
```
6071

72+
> [!primary]
73+
>
74+
> `values.yaml` file is necessary to "fix" blocking [ingress-nginx 1.18+ changes](https://cert-manager.io/docs/releases/release-notes/release-notes-1.18/#acme-http01-challenge-paths-now-use-pathtype-exact-in-ingress-routes).
75+
6176
This command will install the latest version of cert-manager, create a new `cert-manager` namespace and install the new CRD (CustomResourceDefinitions):
6277

6378
```console

pages/public_cloud/containers_orchestration/managed_kubernetes/installing-cert-manager/guide.es-es.md

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,16 +48,31 @@ Hang tight while we grab the latest from your chart repositories...
4848
Update Complete. ⎈Happy Helming!⎈
4949
```
5050

51+
Create a `values.yaml` file with the following content:
52+
53+
```yaml
54+
config:
55+
featureGates:
56+
# Disable the use of Exact PathType in Ingress resources, to work around a bug in ingress-nginx
57+
# https://github.com/kubernetes/ingress-nginx/issues/11176
58+
ACMEHTTP01IngressPathTypeExact: false
59+
```
60+
5161
Install the latest version of cert-manager with `helm install` command:
5262

5363
```bash
5464
helm install \
5565
cert-manager jetstack/cert-manager \
5666
--namespace cert-manager \
5767
--create-namespace \
58-
--set installCRDs=true
68+
--set installCRDs=true \
69+
--values values.yaml
5970
```
6071

72+
> [!primary]
73+
>
74+
> `values.yaml` file is necessary to "fix" blocking [ingress-nginx 1.18+ changes](https://cert-manager.io/docs/releases/release-notes/release-notes-1.18/#acme-http01-challenge-paths-now-use-pathtype-exact-in-ingress-routes).
75+
6176
This command will install the latest version of cert-manager, create a new `cert-manager` namespace and install the new CRD (CustomResourceDefinitions):
6277

6378
```console

pages/public_cloud/containers_orchestration/managed_kubernetes/installing-cert-manager/guide.es-us.md

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,16 +48,31 @@ Hang tight while we grab the latest from your chart repositories...
4848
Update Complete. ⎈Happy Helming!⎈
4949
```
5050

51+
Create a `values.yaml` file with the following content:
52+
53+
```yaml
54+
config:
55+
featureGates:
56+
# Disable the use of Exact PathType in Ingress resources, to work around a bug in ingress-nginx
57+
# https://github.com/kubernetes/ingress-nginx/issues/11176
58+
ACMEHTTP01IngressPathTypeExact: false
59+
```
60+
5161
Install the latest version of cert-manager with `helm install` command:
5262

5363
```bash
5464
helm install \
5565
cert-manager jetstack/cert-manager \
5666
--namespace cert-manager \
5767
--create-namespace \
58-
--set installCRDs=true
68+
--set installCRDs=true \
69+
--values values.yaml
5970
```
6071

72+
> [!primary]
73+
>
74+
> `values.yaml` file is necessary to "fix" blocking [ingress-nginx 1.18+ changes](https://cert-manager.io/docs/releases/release-notes/release-notes-1.18/#acme-http01-challenge-paths-now-use-pathtype-exact-in-ingress-routes).
75+
6176
This command will install the latest version of cert-manager, create a new `cert-manager` namespace and install the new CRD (CustomResourceDefinitions):
6277

6378
```console

0 commit comments

Comments
 (0)