From 9a4abefd9beaf59cb4ad50b6a403a0bd591795ae Mon Sep 17 00:00:00 2001 From: Brad Stein Date: Tue, 12 Aug 2025 00:16:10 -0500 Subject: [PATCH] monerod deployment fix --- services/monero/monerod/deployment.yaml | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/services/monero/monerod/deployment.yaml b/services/monero/monerod/deployment.yaml index 88d1daf..5abbe81 100644 --- a/services/monero/monerod/deployment.yaml +++ b/services/monero/monerod/deployment.yaml @@ -21,11 +21,10 @@ spec: command: ["/bin/sh","-c"] args: - | - set -euxo pipefail + set -eux apt-get update apt-get install -y --no-install-recommends ca-certificates curl bzip2 update-ca-certificates - ARCH="$(uname -m)" case "$ARCH" in x86_64) F="monero-linux-x64" ;; @@ -33,11 +32,8 @@ spec: armv7l) F="monero-linux-armv7" ;; *) echo "Unsupported arch: $ARCH" >&2; exit 1 ;; esac - VER="v0.18.4.1" - # Prefer GitHub release URL (stable + explicit version): - URL="https://github.com/monero-project/monero/releases/download/${VER}/${F}-${VER}.tar.bz2" - + URL="https://downloads.getmonero.org/cli/${F}-${VER}.tar.bz2" echo "Downloading $URL" cd /data curl -fL "$URL" -o monero.tar.bz2