From 3fd7af7c9b408c7550c28f4e749d303ee53383e3 Mon Sep 17 00:00:00 2001 From: Christian Haller Date: Wed, 3 Apr 2024 14:37:02 +0200 Subject: [PATCH] Remove tls block from ingress on OpenShift Since we want to use the existing wildcard tls certificate of the ingress controller, we have to remove the `tls` spec on the ingress object. Source: https://docs.openshift.com/container-platform/4.14/networking/routes/route-configuration.html#creating-edge-route-with-default-certificate_route-configuration --- content/en/docs/helm/simplechart.md | 6 ------ 1 file changed, 6 deletions(-) diff --git a/content/en/docs/helm/simplechart.md b/content/en/docs/helm/simplechart.md index 1d2c5694..2c8c60b4 100644 --- a/content/en/docs/helm/simplechart.md +++ b/content/en/docs/helm/simplechart.md @@ -177,9 +177,6 @@ ingress: paths: - path: / pathType: ImplementationSpecific - tls: - - hosts: - - mychart-. [...] ``` @@ -195,9 +192,6 @@ ingress: paths: - path: / pathType: ImplementationSpecific - tls: - - hosts: - - mychart-. [...] ```