From 1759410a7071b1b7858a2a8b85f8a8bfb07212da Mon Sep 17 00:00:00 2001
From: Balint Pato
Date: Thu, 10 Oct 2019 11:15:57 -0700
Subject: [PATCH 1/9] Update getting started wording
---
docs/content/en/docs/getting-started/_index.md | 7 +++++--
1 file changed, 5 insertions(+), 2 deletions(-)
diff --git a/docs/content/en/docs/getting-started/_index.md b/docs/content/en/docs/getting-started/_index.md
index ac8c73c7e41..05bb7de3685 100644
--- a/docs/content/en/docs/getting-started/_index.md
+++ b/docs/content/en/docs/getting-started/_index.md
@@ -4,11 +4,14 @@ linkTitle: "Getting Started"
weight: 10
---
-This document showcases how to get started with Skaffold using [Docker](https://www.docker.com/)
-and Kubernetes command-line tool, [kubectl](https://kubernetes.io/docs/tasks/tools/install-kubectl/).
+Follow this tutorial to learn about Skaffold on a small Kubernetes app built with [Docker](https://www.docker.com/)
+and deployed with [kubectl](https://kubernetes.io/docs/tasks/tools/install-kubectl/)!
+
+{{< alert title="Note">}}
Aside from `Docker` and `kubectl`, Skaffold also supports a variety of other tools
and workflows; see [How-to Guides](/docs/how-tos) and [Tutorials]({{< relref "/docs/tutorials" >}}) for
more information.
+{{}}
In this quickstart, you will:
From 2dcf56d836d4d7504ae1f3909dba0e4db2f15b6e Mon Sep 17 00:00:00 2001
From: balopat
Date: Thu, 10 Oct 2019 12:03:16 -0700
Subject: [PATCH 2/9] quickstart rewrite for minikube only
---
.../content/en/docs/getting-started/_index.md | 267 ------------------
docs/content/en/docs/install/_index.md | 125 ++++++++
docs/content/en/docs/quickstart/_index.md | 150 ++++++++++
3 files changed, 275 insertions(+), 267 deletions(-)
delete mode 100644 docs/content/en/docs/getting-started/_index.md
create mode 100644 docs/content/en/docs/install/_index.md
create mode 100644 docs/content/en/docs/quickstart/_index.md
diff --git a/docs/content/en/docs/getting-started/_index.md b/docs/content/en/docs/getting-started/_index.md
deleted file mode 100644
index 05bb7de3685..00000000000
--- a/docs/content/en/docs/getting-started/_index.md
+++ /dev/null
@@ -1,267 +0,0 @@
----
-title: "Getting Started"
-linkTitle: "Getting Started"
-weight: 10
----
-
-Follow this tutorial to learn about Skaffold on a small Kubernetes app built with [Docker](https://www.docker.com/)
-and deployed with [kubectl](https://kubernetes.io/docs/tasks/tools/install-kubectl/)!
-
-{{< alert title="Note">}}
-Aside from `Docker` and `kubectl`, Skaffold also supports a variety of other tools
-and workflows; see [How-to Guides](/docs/how-tos) and [Tutorials]({{< relref "/docs/tutorials" >}}) for
-more information.
-{{}}
-
-In this quickstart, you will:
-
-* Install Skaffold,
-* Download a sample go app,
-* Use `skaffold dev` to build and deploy your app every time your code changes,
-* Use `skaffold run` to build and deploy your app once, on demand.
-
-## Before you begin
-
-* [Install Docker](https://www.docker.com/get-started)
-* [Install kubectl](https://kubernetes.io/docs/tasks/tools/install-kubectl/)
-* Configure `kubectl` to connect to a Kubernetes cluster. You can use
- * any Kubernetes platform with Skaffold.
- * [Google Kubernetes Engine](https://cloud.google.com/kubernetes-engine/)
- is a hosted Kubernetes solution. To set up `kubectl` with Google Kubernetes Engine,
- see [Kubernetes Engine Quickstart](https://cloud.google.com/kubernetes-engine/docs/quickstart).
- * [Minikube](https://kubernetes.io/docs/setup/minikube/) is
- a local Kubernetes solution best for development and testing. To set up
- `kubectl` with Minikube, see [Installing Minikube](https://kubernetes.io/docs/tasks/tools/install-minikube/).
-
-{{< alert title="Note" >}}
-If you use a non-local solution, your Docker client needs to be configured
-to push Docker images to an external Docker image registry. For setting up
-Docker with Google Container Registry, see Google Container Registry Quickstart.
-{{< /alert >}}
-
-## Installing Skaffold
-
-{{% tabs %}}
-{{% tab "LINUX" %}}
-### Stable binary
-For the latest **stable** release download and place it in your `PATH`:
-
-https://storage.googleapis.com/skaffold/releases/latest/skaffold-linux-amd64
-
-Run these commands to download and place the binary in your /usr/local/bin folder:
-
-```bash
-curl -Lo skaffold https://storage.googleapis.com/skaffold/releases/latest/skaffold-linux-amd64
-chmod +x skaffold
-sudo mv skaffold /usr/local/bin
-```
-
-### Latest bleeding edge binary
-
-For the latest **bleeding edge** build, download and place it in your `PATH`:
-
-https://storage.googleapis.com/skaffold/builds/latest/skaffold-linux-amd64
-
-Run these commands to download and place the binary in your /usr/local/bin folder:
-
-```bash
-curl -Lo skaffold https://storage.googleapis.com/skaffold/builds/latest/skaffold-linux-amd64
-chmod +x skaffold
-sudo mv skaffold /usr/local/bin
-```
-
-{{% /tab %}}
-
-{{% tab "MACOS" %}}
-
-### Homebrew
-
-```bash
-brew install skaffold
-```
-
-### Stable binary
-For the latest **stable** release download and place it in your `PATH`:
-
-https://storage.googleapis.com/skaffold/releases/latest/skaffold-darwin-amd64
-
-Run these commands to download and place the binary in your /usr/local/bin folder:
-
-```bash
-curl -Lo skaffold https://storage.googleapis.com/skaffold/releases/latest/skaffold-darwin-amd64
-chmod +x skaffold
-sudo mv skaffold /usr/local/bin
-```
-
-### Bleeding edge binary
-
-For the latest **bleeding edge** build, download and place it in your `PATH`:
-
-https://storage.googleapis.com/skaffold/builds/latest/skaffold-darwin-amd64
-
-Run these commands to download and place the binary in your /usr/local/bin folder:
-
-```bash
-curl -Lo skaffold https://storage.googleapis.com/skaffold/builds/latest/skaffold-darwin-amd64
-chmod +x skaffold
-sudo mv skaffold /usr/local/bin
-```
-{{% /tab %}}
-
-{{% tab "WINDOWS" %}}
-
-### Chocolatey
-
-```bash
-choco install skaffold
-```
-
-### Stable binary
-
-For the latest **stable** release download and place it in your `PATH` as `skaffold.exe`:
-
-https://storage.googleapis.com/skaffold/releases/latest/skaffold-windows-amd64.exe
-
-### Bleeding edge binary
-
-For the latest **bleeding edge** build, download and place it in your `PATH` as `skaffold.exe`:
-
-https://storage.googleapis.com/skaffold/builds/latest/skaffold-windows-amd64.exe
-
-{{% /tab %}}
-
-{{% tab "DOCKER" %}}
-
-### Stable binary
-
-For the latest **stable** release, you can use:
-
-`docker run gcr.io/k8s-skaffold/skaffold:latest skaffold `
-
-### Bleeding edge binary
-
-For the latest **bleeding edge** build:
-
-`docker run gcr.io/k8s-skaffold/skaffold:edge skaffold `
-
-{{% /tab %}}
-
-{{% /tabs %}}
-
-{{< alert title="Note" >}}
-To keep Skaffold up to date, update checks are made to Google servers to see if a new version of
-Skaffold is available.
-
-You can turn this update check off by following these instructions.
-
-
-Your use of this software is subject to the Google Privacy Policy
-{{< /alert >}}
-
-## Downloading the sample app
-
-1. Clone the Skaffold repository:
-
- ```bash
- git clone https://github.com/GoogleContainerTools/skaffold
- ```
-
-1. Change to the `examples/getting-started` directory.
-
- ```bash
- cd examples/getting-started
- ```
-
-## `skaffold dev`: Build and deploy your app every time your code changes
-
-Run `skaffold dev --default-repo ` to build and deploy your app continuously.
-The `--default-repo` functionality enables pushing images to your own repository instead of the default `gcr.io/k8s-skaffold` repo.
-You should see some outputs similar to the following entries:
-
-```
-Starting build...
-Found [minikube] context, using local docker daemon.
-Sending build context to Docker daemon 6.144kB
-Step 1/5 : FROM golang:1.9.4-alpine3.7
- ---> fb6e10bf973b
-Step 2/5 : WORKDIR /go/src/github.com/GoogleContainerTools/skaffold/examples/getting-started
- ---> Using cache
- ---> e9d19a54595b
-Step 3/5 : CMD ./app
- ---> Using cache
- ---> 154b6512c4d9
-Step 4/5 : COPY main.go .
- ---> Using cache
- ---> e097086e73a7
-Step 5/5 : RUN go build -o app main.go
- ---> Using cache
- ---> 9c4622e8f0e7
-Successfully built 9c4622e8f0e7
-Successfully tagged 930080f0965230e824a79b9e7eccffbd:latest
-Successfully tagged /gcr.io/k8s-skaffold/skaffold-example:9c4622e8f0e7b5549a61a503bf73366a9cf7f7512aa8e9d64f3327a3c7fded1b
-Build complete in 657.426821ms
-Starting deploy...
-Deploying k8s-pod.yaml...
-Deploy complete in 173.770268ms
-[getting-started] Hello world!
-```
-
-`skaffold dev` monitors your code repository and perform a Skaffold workflow
-every time a change is detected. `skaffold.yaml` provides specifications of the
-workflow, which, in this example, is
-
-* Building a Docker image from the source using the Dockerfile
-* Tagging the Docker image with the Sha256 Hash of its contents
-* (If you use a hosted Kubernetes solution) Pushing the Docker image to the
- external Docker image registry
-* Updating the Kubernetes manifest, `k8s-pod.yaml`, to use the image built previously
-* Deploying the Kubernetes manifest using `kubectl apply -f`
-* Streaming the logs back from the deployed app
-
-{{< 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!
-Update `main.go` as follows:
-
-```go
-package main
-
-import (
- "fmt"
- "time"
-)
-
-func main() {
- for {
- fmt.Println("Hello Skaffold!")
- time.Sleep(time.Second * 1)
- }
-}
-```
-
-The moment you save the file, Skaffold will repeat the workflow described in
-`skaffold.yaml` and eventually re-deploy your application. Once the pipeline
-is completed, you should see updated outputs in the terminal:
-
-```
-[getting-started] Hello Skaffold!
-```
-
-✨
-
-## `skaffold run`: Build and deploy your app once, on demand
-
-If you prefer building and deploying once at a time, run command `skaffold run`.
-Skaffold will perform the workflow described in `skaffold.yaml` exactly once.
-
-## What's next
-
-For more in-depth topics of Skaffold, explore [Skaffold Concepts: Configuration]({{< relref "/docs/concepts#configuration" >}}),
-[Skaffold Concepts: Workflow](/docs/concepts#workflow), and [Skaffold Concepts: Architecture]({{< relref "/docs/concepts#architecture" >}}).
-
-To learn more about how Skaffold builds, tags, and deploys your app, see the How-to Guides on
-using [Builders](/docs/how-tos/builders), [Taggers](/docs/how-tos/taggers), and [Deployers]({{< relref "/docs/how-tos/deployers" >}}).
-
-[Skaffold Tutorials]({{< relref "/docs/tutorials" >}}) details some of the common use cases of Skaffold.
diff --git a/docs/content/en/docs/install/_index.md b/docs/content/en/docs/install/_index.md
new file mode 100644
index 00000000000..ee02432d9f1
--- /dev/null
+++ b/docs/content/en/docs/install/_index.md
@@ -0,0 +1,125 @@
+---
+title: "Installing Skaffold"
+linkTitle: "Installing Skaffold"
+weight: 5
+---
+
+{{< alert title="Note" >}}
+To keep Skaffold up to date, update checks are made to Google servers to see if a new version of
+Skaffold is available.
+
+You can turn this update check off by following these instructions.
+
+
+Your use of this software is subject to the Google Privacy Policy
+{{< /alert >}}
+
+
+{{% tabs %}}
+{{% tab "LINUX" %}}
+### Stable binary
+For the latest **stable** release download and place it in your `PATH`:
+
+https://storage.googleapis.com/skaffold/releases/latest/skaffold-linux-amd64
+
+Run these commands to download and place the binary in your /usr/local/bin folder:
+
+```bash
+curl -Lo skaffold https://storage.googleapis.com/skaffold/releases/latest/skaffold-linux-amd64
+chmod +x skaffold
+sudo mv skaffold /usr/local/bin
+```
+
+### Latest bleeding edge binary
+
+For the latest **bleeding edge** build, download and place it in your `PATH`:
+
+https://storage.googleapis.com/skaffold/builds/latest/skaffold-linux-amd64
+
+Run these commands to download and place the binary in your /usr/local/bin folder:
+
+```bash
+curl -Lo skaffold https://storage.googleapis.com/skaffold/builds/latest/skaffold-linux-amd64
+chmod +x skaffold
+sudo mv skaffold /usr/local/bin
+```
+
+{{% /tab %}}
+
+{{% tab "MACOS" %}}
+
+### Homebrew
+
+```bash
+brew install skaffold
+```
+
+### Stable binary
+For the latest **stable** release download and place it in your `PATH`:
+
+https://storage.googleapis.com/skaffold/releases/latest/skaffold-darwin-amd64
+
+Run these commands to download and place the binary in your /usr/local/bin folder:
+
+```bash
+curl -Lo skaffold https://storage.googleapis.com/skaffold/releases/latest/skaffold-darwin-amd64
+chmod +x skaffold
+sudo mv skaffold /usr/local/bin
+```
+
+### Bleeding edge binary
+
+For the latest **bleeding edge** build, download and place it in your `PATH`:
+
+https://storage.googleapis.com/skaffold/builds/latest/skaffold-darwin-amd64
+
+Run these commands to download and place the binary in your /usr/local/bin folder:
+
+```bash
+curl -Lo skaffold https://storage.googleapis.com/skaffold/builds/latest/skaffold-darwin-amd64
+chmod +x skaffold
+sudo mv skaffold /usr/local/bin
+```
+{{% /tab %}}
+
+{{% tab "WINDOWS" %}}
+
+### Chocolatey
+
+```bash
+choco install skaffold
+```
+
+### Stable binary
+
+For the latest **stable** release download and place it in your `PATH` as `skaffold.exe`:
+
+https://storage.googleapis.com/skaffold/releases/latest/skaffold-windows-amd64.exe
+
+### Bleeding edge binary
+
+For the latest **bleeding edge** build, download and place it in your `PATH` as `skaffold.exe`:
+
+https://storage.googleapis.com/skaffold/builds/latest/skaffold-windows-amd64.exe
+
+{{% /tab %}}
+
+
+{{% tab "DOCKER" %}}
+
+### Stable binary
+
+For the latest **stable** release, you can use:
+
+`docker run gcr.io/k8s-skaffold/skaffold:latest skaffold `
+
+### Bleeding edge binary
+
+For the latest **bleeding edge** build:
+
+`docker run gcr.io/k8s-skaffold/skaffold:edge skaffold `
+
+{{% /tab %}}
+
+{{% /tabs %}}
+
diff --git a/docs/content/en/docs/quickstart/_index.md b/docs/content/en/docs/quickstart/_index.md
new file mode 100644
index 00000000000..6c3f1a4cd56
--- /dev/null
+++ b/docs/content/en/docs/quickstart/_index.md
@@ -0,0 +1,150 @@
+---
+title: "Quickstart"
+linkTitle: "Quickstart"
+weight: 10
+---
+
+Follow this tutorial to learn about Skaffold on a small Kubernetes app built with [Docker](https://www.docker.com/) inside [minikube](https://minikube.sigs.k8s.io)
+and deployed with [kubectl](https://kubernetes.io/docs/tasks/tools/install-kubectl/)!
+
+{{< alert title="Note">}}
+Aside from Docker
and kubectl
, Skaffold also supports a variety of other tools
+and workflows; see How-to Guides and Tutorials for
+more information.
+{{}}
+
+In this quickstart, you will:
+
+* Install Skaffold,
+* Download a sample go app,
+* Use `skaffold dev` to build and deploy your app every time your code changes,
+* Use `skaffold run` to build and deploy your app once, similar to a CI/CD pipeline
+
+## Before you begin
+
+* [Install Skaffold]({{< relref "/docs/install" >}})
+* [Install kubectl](https://kubernetes.io/docs/tasks/tools/install-kubectl/)
+* [Install minikube](https://minikube.sigs.k8s.io/docs/start/)
+
+{{< alert title="Note">}}
+Skaffold will build the app using the Docker daemon hosted inside minikube.
+If you want to deploy against a different Kubernetes cluster, e.g. Kind, GKE clusters, you will have to install Docker (for Desktop) to build this app.
+{{}}
+
+## Downloading the sample app
+
+1. Clone the Skaffold repository:
+
+ ```bash
+ git clone https://github.com/GoogleContainerTools/skaffold
+ ```
+
+1. Change to the `examples/getting-started` directory.
+
+ ```bash
+ cd examples/getting-started
+ ```
+
+## `skaffold dev`: continuous build & deploy on code changes
+
+Run `skaffold dev` to build and deploy your app continuously.
+You should see some outputs similar to the following entries:
+
+```
+Listing files to watch...
+ - gcr.io/k8s-skaffold/skaffold-example
+List generated in 2.46354ms
+Generating tags...
+ - gcr.io/k8s-skaffold/skaffold-example -> gcr.io/k8s-skaffold/skaffold-example:v0.39.0-131-g1759410a7-dirty
+Tags generated in 65.661438ms
+Starting build...
+Found [minikube] context, using local docker daemon.
+Building [gcr.io/k8s-skaffold/skaffold-example]...
+Sending build context to Docker daemon 3.072kB
+Step 1/6 : FROM golang:1.12.9-alpine3.10 as builder
+ ---> e0d646523991
+Step 2/6 : COPY main.go .
+ ---> Using cache
+ ---> 2d4b0b8a9dda
+Step 3/6 : RUN go build -o /app main.go
+ ---> Using cache
+ ---> 3eae8e329453
+Step 4/6 : FROM alpine:3.10
+ ---> 961769676411
+Step 5/6 : CMD ["./app"]
+ ---> Using cache
+ ---> ce76e22da3bd
+Step 6/6 : COPY --from=builder /app .
+ ---> dec4a50e0fd1
+Successfully built dec4a50e0fd1
+Successfully tagged gcr.io/k8s-skaffold/skaffold-example:v0.39.0-131-g1759410a7-dirty
+Build complete in 232.935849ms
+Starting test...
+Test complete in 4.189µs
+Tags used in deployment:
+ - Since images are not pushed, they can't be referenced by digest
+ They are tagged and referenced by a unique ID instead
+ - gcr.io/k8s-skaffold/skaffold-example -> gcr.io/k8s-skaffold/skaffold-example:dec4a50e0fd1ca2f56c6aad2a6c6e1d3806e5f6bd8aa2751e0a10db0d46faaba
+Starting deploy...
+ - pod/getting-started created
+Deploy complete in 374.060415ms
+Watching for changes...
+[getting-started] Hello world!
+[getting-started] Hello world!
+[getting-started] Hello world!
+
+```
+
+`skaffold dev` monitors your code repository and perform a Skaffold workflow
+every time a change is detected. `skaffold.yaml` provides specifications of the
+workflow, which, in this example, is
+
+* Building a Docker image from the source using the Dockerfile
+* Tagging the Docker image with the Sha256 Hash of its contents
+* Updating the Kubernetes manifest, `k8s-pod.yaml`, to use the image built previously
+* Deploying the Kubernetes manifest using `kubectl apply -f`
+* Streaming the logs back from the deployed app
+
+Let's re-trigger the workflow just by a single code change!
+Update `main.go` as follows:
+
+```go
+package main
+
+import (
+ "fmt"
+ "time"
+)
+
+func main() {
+ for {
+ fmt.Println("Hello Skaffold!")
+ time.Sleep(time.Second * 1)
+ }
+}
+```
+
+The moment you save the file, Skaffold will repeat the workflow described in
+`skaffold.yaml` and eventually re-deploy your application. Once the pipeline
+is completed, you should see updated outputs in the terminal:
+
+```
+[getting-started] Hello Skaffold!
+```
+
+✨
+
+## `skaffold run`: build & deploy once
+
+If you prefer building and deploying once at a time, run `skaffold run`.
+Skaffold will perform the workflow described in `skaffold.yaml` exactly once.
+
+## What's next
+
+For more in-depth topics of Skaffold, explore [Skaffold Concepts: Configuration]({{< relref "/docs/concepts#configuration" >}}),
+[Skaffold Concepts: Workflow](/docs/concepts#workflow), and [Skaffold Concepts: Architecture]({{< relref "/docs/concepts#architecture" >}}).
+
+To learn more about how Skaffold builds, tags, and deploys your app, see the How-to Guides on
+using [Builders](/docs/how-tos/builders), [Taggers](/docs/how-tos/taggers), and [Deployers]({{< relref "/docs/how-tos/deployers" >}}).
+
+[Skaffold Tutorials]({{< relref "/docs/tutorials" >}}) details some of the common use cases of Skaffold.
From 5a4ea25c6370e3f8597fc76c2a6b732c1300ff4c Mon Sep 17 00:00:00 2001
From: Balint Pato
Date: Thu, 10 Oct 2019 12:33:39 -0700
Subject: [PATCH 3/9] Update docs/content/en/docs/quickstart/_index.md
Co-Authored-By: Nick Kubala
---
docs/content/en/docs/quickstart/_index.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/docs/content/en/docs/quickstart/_index.md b/docs/content/en/docs/quickstart/_index.md
index 6c3f1a4cd56..94fd13454c1 100644
--- a/docs/content/en/docs/quickstart/_index.md
+++ b/docs/content/en/docs/quickstart/_index.md
@@ -100,7 +100,7 @@ every time a change is detected. `skaffold.yaml` provides specifications of the
workflow, which, in this example, is
* Building a Docker image from the source using the Dockerfile
-* Tagging the Docker image with the Sha256 Hash of its contents
+* Tagging the Docker image with the `sha256` hash of its contents
* Updating the Kubernetes manifest, `k8s-pod.yaml`, to use the image built previously
* Deploying the Kubernetes manifest using `kubectl apply -f`
* Streaming the logs back from the deployed app
From 63e4851b8d9f566fa9dd9eeb8c39aa77b1f293a8 Mon Sep 17 00:00:00 2001
From: Balint Pato
Date: Thu, 10 Oct 2019 12:33:50 -0700
Subject: [PATCH 4/9] Update docs/content/en/docs/quickstart/_index.md
Co-Authored-By: Nick Kubala
---
docs/content/en/docs/quickstart/_index.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/docs/content/en/docs/quickstart/_index.md b/docs/content/en/docs/quickstart/_index.md
index 94fd13454c1..ba88933295f 100644
--- a/docs/content/en/docs/quickstart/_index.md
+++ b/docs/content/en/docs/quickstart/_index.md
@@ -28,7 +28,7 @@ In this quickstart, you will:
{{< alert title="Note">}}
Skaffold will build the app using the Docker daemon hosted inside minikube.
-If you want to deploy against a different Kubernetes cluster, e.g. Kind, GKE clusters, you will have to install Docker (for Desktop) to build this app.
+If you want to deploy against a different Kubernetes cluster, e.g. Kind, GKE clusters, you will have to install Docker to build this app.
{{}}
## Downloading the sample app
From 96c6336ec336ebf1b2c6e0382293776ad2dc8287 Mon Sep 17 00:00:00 2001
From: Balint Pato
Date: Thu, 10 Oct 2019 12:34:06 -0700
Subject: [PATCH 5/9] Update docs/content/en/docs/quickstart/_index.md
Co-Authored-By: Nick Kubala
---
docs/content/en/docs/quickstart/_index.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/docs/content/en/docs/quickstart/_index.md b/docs/content/en/docs/quickstart/_index.md
index ba88933295f..29a554fbd87 100644
--- a/docs/content/en/docs/quickstart/_index.md
+++ b/docs/content/en/docs/quickstart/_index.md
@@ -95,7 +95,7 @@ Watching for changes...
```
-`skaffold dev` monitors your code repository and perform a Skaffold workflow
+`skaffold dev` watches your local source code and executes your Skaffold pipeline
every time a change is detected. `skaffold.yaml` provides specifications of the
workflow, which, in this example, is
From 75f0fe750bec4ce425c2a42fc393136452f06299 Mon Sep 17 00:00:00 2001
From: Balint Pato
Date: Thu, 10 Oct 2019 12:34:15 -0700
Subject: [PATCH 6/9] Update docs/content/en/docs/quickstart/_index.md
Co-Authored-By: Nick Kubala
---
docs/content/en/docs/quickstart/_index.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/docs/content/en/docs/quickstart/_index.md b/docs/content/en/docs/quickstart/_index.md
index 29a554fbd87..ad8531e9923 100644
--- a/docs/content/en/docs/quickstart/_index.md
+++ b/docs/content/en/docs/quickstart/_index.md
@@ -97,7 +97,7 @@ Watching for changes...
`skaffold dev` watches your local source code and executes your Skaffold pipeline
every time a change is detected. `skaffold.yaml` provides specifications of the
-workflow, which, in this example, is
+workflow - in this example, the pipeline is
* Building a Docker image from the source using the Dockerfile
* Tagging the Docker image with the `sha256` hash of its contents
From 57f462413b38b43020dae7fd08fd21bffa04c698 Mon Sep 17 00:00:00 2001
From: Balint Pato
Date: Thu, 10 Oct 2019 12:34:25 -0700
Subject: [PATCH 7/9] Update docs/content/en/docs/quickstart/_index.md
Co-Authored-By: Nick Kubala
---
docs/content/en/docs/quickstart/_index.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/docs/content/en/docs/quickstart/_index.md b/docs/content/en/docs/quickstart/_index.md
index ad8531e9923..c23fd86c54e 100644
--- a/docs/content/en/docs/quickstart/_index.md
+++ b/docs/content/en/docs/quickstart/_index.md
@@ -125,7 +125,7 @@ func main() {
```
The moment you save the file, Skaffold will repeat the workflow described in
-`skaffold.yaml` and eventually re-deploy your application. Once the pipeline
+`skaffold.yaml`, rebuilding and redeploying your application. Once the pipeline
is completed, you should see updated outputs in the terminal:
```
From e5b76585ff1403c881642613f90dc3f5cb62767e Mon Sep 17 00:00:00 2001
From: Balint Pato
Date: Thu, 10 Oct 2019 12:34:47 -0700
Subject: [PATCH 8/9] Update docs/content/en/docs/quickstart/_index.md
Co-Authored-By: Nick Kubala
---
docs/content/en/docs/quickstart/_index.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/docs/content/en/docs/quickstart/_index.md b/docs/content/en/docs/quickstart/_index.md
index c23fd86c54e..7cdf7241d88 100644
--- a/docs/content/en/docs/quickstart/_index.md
+++ b/docs/content/en/docs/quickstart/_index.md
@@ -124,7 +124,7 @@ func main() {
}
```
-The moment you save the file, Skaffold will repeat the workflow described in
+When you save the file, Skaffold will see this change and repeat the workflow described in
`skaffold.yaml`, rebuilding and redeploying your application. Once the pipeline
is completed, you should see updated outputs in the terminal:
From 4786258553a781f55fe829dc74210874d2cf0208 Mon Sep 17 00:00:00 2001
From: Balint Pato
Date: Thu, 10 Oct 2019 12:35:01 -0700
Subject: [PATCH 9/9] Update docs/content/en/docs/quickstart/_index.md
Co-Authored-By: Nick Kubala
---
docs/content/en/docs/quickstart/_index.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/docs/content/en/docs/quickstart/_index.md b/docs/content/en/docs/quickstart/_index.md
index 7cdf7241d88..3843e08be05 100644
--- a/docs/content/en/docs/quickstart/_index.md
+++ b/docs/content/en/docs/quickstart/_index.md
@@ -126,7 +126,7 @@ func main() {
When you save the file, Skaffold will see this change and repeat the workflow described in
`skaffold.yaml`, rebuilding and redeploying your application. Once the pipeline
-is completed, you should see updated outputs in the terminal:
+is completed, you should see the changes reflected in the output in the terminal:
```
[getting-started] Hello Skaffold!