summaryrefslogtreecommitdiff
path: root/contributors/guide
diff options
context:
space:
mode:
authorAlejandra Bustos <alejandrabustosn@gmail.com>2018-02-21 12:39:40 -0600
committerAlejandra Bustos <alejandrabustosn@gmail.com>2018-02-21 12:39:40 -0600
commit4f755b398aeaf9dbb24864694de78c656c85b34d (patch)
treefd1466e06f6fdc59de8bc9817fd1bacd2cc76194 /contributors/guide
parent326f350934e0f540730473678fa08e7c32cefc6b (diff)
Complete Install etcd in GitHub Workflow
Diffstat (limited to 'contributors/guide')
-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.