From 4a6cc71dcdc8c1b3412dfaa5395d2ce0a4d3a358 Mon Sep 17 00:00:00 2001 From: chentanjun Date: Sat, 16 Nov 2019 21:24:43 +0800 Subject: [PATCH] fix-up some broken url (#5746) --- README.md | 2 +- content/en/blog/2019/data-plane-setup/index.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index ba27f11046..e01f60d97c 100644 --- a/README.md +++ b/README.md @@ -51,7 +51,7 @@ is used is determined by the istio.io [Netlify](https://netlify.com) project's c - The content of archive.istio.io is taken from the older release-XXX branches. The set of branches that are included on archive.istio.io is determined by the `TOBUILD` variable in this -[script](https://github.com/istio/istio.io/blob/master/scripts/gen_archive_site.sh). +[script](https://github.com/istio/istio.io/blob/master/scripts/build_archive_site.sh). ### Publishing content immediately diff --git a/content/en/blog/2019/data-plane-setup/index.md b/content/en/blog/2019/data-plane-setup/index.md index b76a3d9084..4165614ff1 100644 --- a/content/en/blog/2019/data-plane-setup/index.md +++ b/content/en/blog/2019/data-plane-setup/index.md @@ -33,7 +33,7 @@ It is important to understand that the sidecar injection into the application po In simple terms, sidecar injection is adding the configuration of additional containers to the pod template. The added containers needed for the Istio service mesh are: `istio-init` -This [init container] () is used to setup the `iptables` rules so that inbound/outbound traffic will go through the sidecar proxy. An init container is different than an app container in following ways: +This [init container](https://kubernetes.io/docs/concepts/workloads/pods/init-containers/) is used to setup the `iptables` rules so that inbound/outbound traffic will go through the sidecar proxy. An init container is different than an app container in following ways: - It runs before an app container is started and it always runs to completion. - If there are many init containers, each should complete with success before the next container is started.