diff --git a/cloud-config.txt b/cloud-config.txt index f1397b7..c4d73a0 100644 --- a/cloud-config.txt +++ b/cloud-config.txt @@ -17,7 +17,7 @@ runcmd: - 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 https://github.com/openfaas/faasd -- curl -fSLs "https://github.com/openfaas/faasd/releases/download/0.8.1/faasd" --output "/usr/local/bin/faasd" && chmod a+x "/usr/local/bin/faasd" +- curl -fSLs "https://github.com/openfaas/faasd/releases/download/0.8.2/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 301f0a8..76ba231 100644 --- a/docs/DEV.md +++ b/docs/DEV.md @@ -174,17 +174,17 @@ make local ```sh # For x86_64 -sudo curl -fSLs "https://github.com/openfaas/faasd/releases/download/0.8.0/faasd" \ +sudo curl -fSLs "https://github.com/openfaas/faasd/releases/download/0.8.2/faasd" \ -o "/usr/local/bin/faasd" \ && sudo chmod a+x "/usr/local/bin/faasd" # armhf -sudo curl -fSLs "https://github.com/openfaas/faasd/releases/download/0.8.0/faasd-armhf" \ +sudo curl -fSLs "https://github.com/openfaas/faasd/releases/download/0.8.2/faasd-armhf" \ -o "/usr/local/bin/faasd" \ && sudo chmod a+x "/usr/local/bin/faasd" # arm64 -sudo curl -fSLs "https://github.com/openfaas/faasd/releases/download/0.8.0/faasd-arm64" \ +sudo curl -fSLs "https://github.com/openfaas/faasd/releases/download/0.8.2/faasd-arm64" \ -o "/usr/local/bin/faasd" \ && sudo chmod a+x "/usr/local/bin/faasd" ```