diff --git a/README.md b/README.md index 39ec100..b299c4e 100644 --- a/README.md +++ b/README.md @@ -52,7 +52,7 @@ You can run this tutorial on your Raspberry Pi, or adapt the steps for a regular Automate everything within < 60 seconds and get a public URL and IP address back. Customise as required, or adapt to your preferred cloud such as AWS EC2. -* [Provision faasd 0.9.5 on DigitalOcean with Terraform 0.12.0](docs/bootstrap/README.md) +* [Provision faasd 0.9.9 on DigitalOcean with Terraform 0.12.0](docs/bootstrap/README.md) * [Provision faasd on DigitalOcean with built-in TLS support](docs/bootstrap/digitalocean-terraform/README.md) diff --git a/cloud-config.txt b/cloud-config.txt index 42bed01..15e61e7 100644 --- a/cloud-config.txt +++ b/cloud-config.txt @@ -17,8 +17,8 @@ runcmd: - mkdir -p /opt/cni/bin - curl -sSL https://github.com/containernetworking/plugins/releases/download/v0.8.5/cni-plugins-linux-amd64-v0.8.5.tgz | tar -xz -C /opt/cni/bin - mkdir -p /go/src/github.com/openfaas/ -- cd /go/src/github.com/openfaas/ && git clone --depth 1 --branch 0.9.5 https://github.com/openfaas/faasd -- curl -fSLs "https://github.com/openfaas/faasd/releases/download/0.9.5/faasd" --output "/usr/local/bin/faasd" && chmod a+x "/usr/local/bin/faasd" +- cd /go/src/github.com/openfaas/ && git clone --depth 1 --branch 0.9.9 https://github.com/openfaas/faasd +- curl -fSLs "https://github.com/openfaas/faasd/releases/download/0.9.9/faasd" --output "/usr/local/bin/faasd" && chmod a+x "/usr/local/bin/faasd" - cd /go/src/github.com/openfaas/faasd/ && /usr/local/bin/faasd install - systemctl status -l containerd --no-pager - journalctl -u faasd-provider --no-pager diff --git a/docs/DEV.md b/docs/DEV.md index 86e9ccf..c1eaa17 100644 --- a/docs/DEV.md +++ b/docs/DEV.md @@ -231,7 +231,7 @@ export SUFFIX="-armhf" export SUFFIX="-arm64" # Then download -curl -fSLs "https://github.com/openfaas/faasd/releases/download/0.9.5/faasd$SUFFIX" \ +curl -fSLs "https://github.com/openfaas/faasd/releases/download/0.9.9/faasd$SUFFIX" \ -o "/tmp/faasd" \ && chmod +x "/tmp/faasd" sudo mv /tmp/faasd /usr/local/bin/ diff --git a/docs/bootstrap/cloud-config.tpl b/docs/bootstrap/cloud-config.tpl index d04794d..6a7817a 100644 --- a/docs/bootstrap/cloud-config.tpl +++ b/docs/bootstrap/cloud-config.tpl @@ -19,8 +19,8 @@ runcmd: - mkdir -p /var/lib/faasd/secrets/ - echo ${gw_password} > /var/lib/faasd/secrets/basic-auth-password - echo admin > /var/lib/faasd/secrets/basic-auth-user -- cd /go/src/github.com/openfaas/ && git clone --depth 1 --branch 0.9.5 https://github.com/openfaas/faasd -- curl -fSLs "https://github.com/openfaas/faasd/releases/download/0.9.5/faasd" --output "/usr/local/bin/faasd" && chmod a+x "/usr/local/bin/faasd" +- cd /go/src/github.com/openfaas/ && git clone --depth 1 --branch 0.9.9 https://github.com/openfaas/faasd +- curl -fSLs "https://github.com/openfaas/faasd/releases/download/0.9.9/faasd" --output "/usr/local/bin/faasd" && chmod a+x "/usr/local/bin/faasd" - cd /go/src/github.com/openfaas/faasd/ && /usr/local/bin/faasd install - systemctl status -l containerd --no-pager - journalctl -u faasd-provider --no-pager diff --git a/docs/bootstrap/digitalocean-terraform/cloud-config.tpl b/docs/bootstrap/digitalocean-terraform/cloud-config.tpl index 0e05ad5..8683b08 100644 --- a/docs/bootstrap/digitalocean-terraform/cloud-config.tpl +++ b/docs/bootstrap/digitalocean-terraform/cloud-config.tpl @@ -41,8 +41,8 @@ runcmd: - mkdir -p /var/lib/faasd/secrets/ - echo ${gw_password} > /var/lib/faasd/secrets/basic-auth-password - echo admin > /var/lib/faasd/secrets/basic-auth-user -- cd /go/src/github.com/openfaas/ && git clone --depth 1 --branch 0.9.5 https://github.com/openfaas/faasd -- curl -fSLs "https://github.com/openfaas/faasd/releases/download/0.9.5/faasd" --output "/usr/local/bin/faasd" && chmod a+x "/usr/local/bin/faasd" +- cd /go/src/github.com/openfaas/ && git clone --depth 1 --branch 0.9.9 https://github.com/openfaas/faasd +- curl -fSLs "https://github.com/openfaas/faasd/releases/download/0.9.9/faasd" --output "/usr/local/bin/faasd" && chmod a+x "/usr/local/bin/faasd" - cd /go/src/github.com/openfaas/faasd/ && /usr/local/bin/faasd install - systemctl status -l containerd --no-pager - journalctl -u faasd-provider --no-pager