From 4555ae494ba9f09114312f73a8ea24808de43672 Mon Sep 17 00:00:00 2001 From: Andreas Jaeger Date: Fri, 11 May 2018 18:37:29 +0200 Subject: [PATCH] fix an image link (#8497) The pod diagram gives as URL https://images/docs/pod.svg, remove the extra "/" so that it redirects to our site. Closes: #8491 --- content/en/docs/concepts/workloads/pods/pod.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/en/docs/concepts/workloads/pods/pod.md b/content/en/docs/concepts/workloads/pods/pod.md index 381d4995c7..7969f86c5e 100644 --- a/content/en/docs/concepts/workloads/pods/pod.md +++ b/content/en/docs/concepts/workloads/pods/pod.md @@ -58,7 +58,7 @@ that means that it exists as long as that pod (with that UID) exists. If that pod is deleted for any reason, even if an identical replacement is created, the related thing (e.g. volume) is also destroyed and created anew. -{{< figure src="//images/docs/pod.svg" title="pod diagram" width="50%" >}} +{{< figure src="/images/docs/pod.svg" title="pod diagram" width="50%" >}} *A multi-container pod that contains a file puller and a web server that uses a persistent volume for shared storage between the containers.*