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.