summaryrefslogtreecommitdiff
path: root/contributors/guide/github-workflow.md
diff options
context:
space:
mode:
authork8s-ci-robot <k8s-ci-robot@users.noreply.github.com>2018-02-22 10:16:40 -0800
committerGitHub <noreply@github.com>2018-02-22 10:16:40 -0800
commit7b7c16fb3cd3cd3a772192721b7c7a5432e927d0 (patch)
treea253b3efdf6d97e4b6ab6f3b7ade3f1cc2d001b4 /contributors/guide/github-workflow.md
parent55f69bf9f01d9d9d9f36a6ef1e3c1b1ad9c1222d (diff)
parent4f755b398aeaf9dbb24864694de78c656c85b34d (diff)
Merge pull request #1834 from alessbn/dev-guide
Complete Install etcd in GitHub Workflow
Diffstat (limited to 'contributors/guide/github-workflow.md')
-rw-r--r--contributors/guide/github-workflow.md8
1 files changed, 7 insertions, 1 deletions
diff --git a/contributors/guide/github-workflow.md b/contributors/guide/github-workflow.md
index c96e4e7d..870da2d6 100644
--- a/contributors/guide/github-workflow.md
+++ b/contributors/guide/github-workflow.md
@@ -103,7 +103,13 @@ make cross
#### Install etcd
```sh
+cd $working_dir/kubernetes
+
+# Installs in ./third_party/etcd
hack/install-etcd.sh
+
+# Add to PATH
+echo export PATH="\$PATH:$working_dir/kubernetes/third_party/etcd" >> ~/.profile
```
#### Test
@@ -228,4 +234,4 @@ git rebase -i upstream/master
For mass automated fixups (e.g. automated doc formatting), use one or more
commits for the changes to tooling and a final commit to apply the fixup en
-masse. This makes reviews easier. \ No newline at end of file
+masse. This makes reviews easier.