From 9d15549f8fc633e187ae120ab5bd4ad7a2f2dae7 Mon Sep 17 00:00:00 2001 From: Ruil1n Date: Wed, 24 Mar 2021 17:35:22 +0800 Subject: [PATCH] zh-translation: docs/ops/integrations/certmanager/index.md (#9370) * zh-translation: docs/ops/integrations/certmanager/index.md * Update index.md --- content/zh/docs/ops/integrations/certmanager/index.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/content/zh/docs/ops/integrations/certmanager/index.md b/content/zh/docs/ops/integrations/certmanager/index.md index ad0d8d26d1..bb02f38391 100644 --- a/content/zh/docs/ops/integrations/certmanager/index.md +++ b/content/zh/docs/ops/integrations/certmanager/index.md @@ -1,7 +1,7 @@ --- title: cert-manager description: 关于如何与 cert-manager 集成的相关说明。 -weight: 20 +weight: 26 keywords: [integration,cert-manager] aliases: - /zh/docs/tasks/traffic-management/ingress/ingress-certmgr/ @@ -53,7 +53,7 @@ spec: protocol: HTTPS tls: mode: SIMPLE - credentialName: ingress-cert # This should match the Certifcate secretName + credentialName: ingress-cert # This should match the Certificate secretName hosts: - my.example.com # This should match a DNS name in the Certificate {{< /text >}} @@ -65,7 +65,7 @@ cert-manager 通过[在 Ingress 对象上配置注解](https://cert-manager.io/d 或者,也可以按照 [Istio Gateway](#istio-gateway) 部分的描述创建 `Certificate`,然后在 `Ingress` 对象中引用它: {{< text yaml >}} -apiVersion: extensions/v1beta1 +apiVersion: networking.k8s.io/v1beta1 kind: Ingress metadata: name: ingress @@ -78,5 +78,5 @@ spec: tls: - hosts: - my.example.com # This should match a DNS name in the Certificate - secretName: ingress-cert # This should match the Certifcate secretName + secretName: ingress-cert # This should match the Certificate secretName {{< /text >}}