From 7ca2621c983fd32487d28e6e578369f3ccedd3ab Mon Sep 17 00:00:00 2001 From: "Alex Ellis (OpenFaaS Ltd)" Date: Fri, 20 Sep 2024 09:42:36 +0100 Subject: [PATCH] Add notes about other OS packages for faasd-pro Signed-off-by: Alex Ellis (OpenFaaS Ltd) --- hack/install-pro.sh | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/hack/install-pro.sh b/hack/install-pro.sh index 8a59da79..f6232f68 100644 --- a/hack/install-pro.sh +++ b/hack/install-pro.sh @@ -12,9 +12,6 @@ if [ ! -x "$(command -v arkade)" ]; then fi PATH=$PATH:$HOME/.arkade/bin -if [ ! -x "$(command -v crane)" ]; then - arkade get crane -fi tmpdir=$(mktemp -d) @@ -35,3 +32,11 @@ echo "3. Then perform the final installation steps" echo "" echo "sudo -E sh -c \"cd ${tmpdir}/var/lib/faasd && faasd install\"" echo "" +echo "4. Additional OS packages are sometimes required, with one of the below:" +echo "" +echo "apt install -qy runc bridge-utils iptables" +echo "" +echo "yum install runc iptables-services" +echo "" +echo "pacman -Sy runc bridge-utils" +