From 9b9e56f5de0b01baf51bc9102ceb515afe5839ca Mon Sep 17 00:00:00 2001 From: koushik-ms Date: Mon, 4 Apr 2022 11:53:55 +0200 Subject: [PATCH] fix typo in template for glossary reference Link to glossary term "ConfigMap" didn't render correctly due to a missing "{" at the beginning of template. This commit fixes it. --- content/en/docs/tasks/tls/managing-tls-in-a-cluster.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/en/docs/tasks/tls/managing-tls-in-a-cluster.md b/content/en/docs/tasks/tls/managing-tls-in-a-cluster.md index f66db84449..83e307d540 100644 --- a/content/en/docs/tasks/tls/managing-tls-in-a-cluster.md +++ b/content/en/docs/tasks/tls/managing-tls-in-a-cluster.md @@ -308,7 +308,7 @@ kubectl create secret tls server --cert server.crt --key server-key.pem secret/server created ``` -Finally, you can populate `ca.pem` into a {< glossary_tooltip text="ConfigMap" term_id="configmap" >}} +Finally, you can populate `ca.pem` into a {{< glossary_tooltip text="ConfigMap" term_id="configmap" >}} and use it as the trust root to verify the serving certificate: ```shell