From e268aaf9360c6bb19b26b4354d975d757e3d9bb7 Mon Sep 17 00:00:00 2001 From: Andrew Coleman Date: Tue, 26 Feb 2019 11:15:25 -0500 Subject: [PATCH] add tilt --- linux-bionic-playbook.yaml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/linux-bionic-playbook.yaml b/linux-bionic-playbook.yaml index 7ad9ba1..8aa3074 100644 --- a/linux-bionic-playbook.yaml +++ b/linux-bionic-playbook.yaml @@ -79,6 +79,12 @@ shell: curl -sLo /tmp/helm.tar.gz https://storage.googleapis.com/kubernetes-helm/helm-v2.9.1-linux-amd64.tar.gz && mkdir -p /tmp/helm && tar xzf /tmp/helm.tar.gz -C /tmp/helm && install -m 755 /tmp/helm/linux-amd64/helm /usr/local/bin/helm-2.9.1 && rm -rf /tmp/helm* && ln -sf /usr/local/bin/helm-2.9.1 /usr/local/bin/helm args: creates: /usr/local/bin/helm-2.9.1 + - name: install tilt + shell: curl -sL https://github.com/windmilleng/tilt/releases/download/v0.7.5/tilt.0.7.5.linux.x86_64.tar.gz | tar -xzv tilt && mv tilt /usr/local/bin/tilt-0.7.5 & ln -sf /usr/local/bin/tilt-0.7.5 /usr/local/bin/tilt + args: + warn: False + creates: /usr/local/bin/tilt-0.7.5 + sudo mv tilt /usr/local/bin/tilt - name: install docker-machine shell: curl -sLo docker-machine https://github.com/docker/machine/releases/download/v0.14.0/docker-machine-linux-x86_64 && install -m 755 docker-machine /usr/local/bin/docker-machine-0.14.0 && rm -f docker-machine && ln -sf /usr/local/bin/docker-machine-0.14.0 /usr/local/bin/docker-machine args: