From 80585164fcac281abd6ee026e081e702055ffe74 Mon Sep 17 00:00:00 2001 From: shane lee Date: Thu, 10 Jan 2019 12:04:10 +1100 Subject: [PATCH 1/2] Update doc around local development Related to this issue #1392 --- docs/content/en/docs/getting-started/_index.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/docs/content/en/docs/getting-started/_index.md b/docs/content/en/docs/getting-started/_index.md index 1104916ffd3..a5e5dc10986 100644 --- a/docs/content/en/docs/getting-started/_index.md +++ b/docs/content/en/docs/getting-started/_index.md @@ -190,6 +190,9 @@ workflow, which, in this example, is * Deploying the Kubernetes manifest using `kubectl apply -f` * Streaming the logs back from the deployed app +**NOTE:** For dev, if `imagePullPolicy` set to `Always` in deployment manifest it will expect the image to exist in remote registry + + Let's re-trigger the workflow just by a single code change! Update `main.go` as follows: From 6371a851acc209b8d5b114a7de7cec93cef4ac07 Mon Sep 17 00:00:00 2001 From: shane lee Date: Fri, 11 Jan 2019 10:23:39 +1100 Subject: [PATCH 2/2] Update _index.md --- docs/content/en/docs/getting-started/_index.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/docs/content/en/docs/getting-started/_index.md b/docs/content/en/docs/getting-started/_index.md index a5e5dc10986..8d398c4d4e8 100644 --- a/docs/content/en/docs/getting-started/_index.md +++ b/docs/content/en/docs/getting-started/_index.md @@ -190,7 +190,9 @@ workflow, which, in this example, is * Deploying the Kubernetes manifest using `kubectl apply -f` * Streaming the logs back from the deployed app -**NOTE:** For dev, if `imagePullPolicy` set to `Always` in deployment manifest it will expect the image to exist in remote registry +{{< alert title="Note" >}} +For skaffold dev, if `imagePullPolicy` is set to `Always` in your Kubernetes manifest, it will expect the image to exist in a remote registry. +{{< /alert >}} Let's re-trigger the workflow just by a single code change!