hashipi

Raspberry Pi Test Cluster for HashiCorp Vault, Nomad and Consul
git clone https://git.in0rdr.ch/hashipi.git
Log | Files | Refs | README

commit cf6d6a80e54f7c38dc0ef8ce6b4ac5b477a5cde1
parent 34962fc81141ce9e8a99f0e557fb07d8fa7ca3f4
Author: Andreas Gruhler <agruhl@gmx.ch>
Date:   Sat, 12 Feb 2022 13:58:40 +0100

feat(cni): fix plugin arch

Diffstat:
Mnomad.sh | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/nomad.sh b/nomad.sh @@ -144,6 +144,6 @@ sed 's/$/ cgroup_enable=memory/' /boot/cmdline.txt # Install CNI plugin for Consul connect integration # https://www.nomadproject.io/docs/integrations/consul-connect -curl -L -o cni-plugins.tgz "https://github.com/containernetworking/plugins/releases/download/v1.0.0/cni-plugins-linux-$( [ $(uname -m) = aarch64 ] && echo arm64 || echo amd64)"-v1.0.0.tgz +curl -L -o cni-plugins.tgz "https://github.com/containernetworking/plugins/releases/download/v1.0.0/cni-plugins-linux-arm-v1.0.0.tgz" mkdir -p /opt/cni/bin tar -C /opt/cni/bin -xzf cni-plugins.tgz