From 4f755b398aeaf9dbb24864694de78c656c85b34d Mon Sep 17 00:00:00 2001 From: Alejandra Bustos Date: Wed, 21 Feb 2018 12:39:40 -0600 Subject: [PATCH] Complete Install etcd in GitHub Workflow --- contributors/guide/github-workflow.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/contributors/guide/github-workflow.md b/contributors/guide/github-workflow.md index c96e4e7d4..870da2d6f 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.