cluster

Infrastructure files for Nordgedanken and Midnightthoughts.
git clone git://archive.git.mtrnord.blog/MTRNord/cluster.git
Log | Files | Refs | README

commit c3d1f0a74979a608d3613eb0fa5836750ea5d821
parent ee36781fcebcf36e7ae69842b9d8604e0d38a15a
Author: MTRNord <MTRNord@users.noreply.github.com>
Date:   Fri, 10 Apr 2026 10:11:44 +0200

meow?

Signed-off-by: MTRNord <MTRNord@users.noreply.github.com>

Diffstat:
Mapps/talos_cluster/jenkins/seeds/jobs/gitops_multiarch_builds.groovy | 8+++++---
1 file changed, 5 insertions(+), 3 deletions(-)

diff --git a/apps/talos_cluster/jenkins/seeds/jobs/gitops_multiarch_builds.groovy b/apps/talos_cluster/jenkins/seeds/jobs/gitops_multiarch_builds.groovy @@ -89,9 +89,9 @@ pipelineJob('gitops-multiarch-builds') { stages { stage('Prepare Build Environment') { steps { - sh ''' + def exec = """ # Wait for docker socket to be available - for i in \$(seq 1 30); do + for i in $(seq 1 30); do if [ -S /var/run/docker.sock ]; then break fi @@ -110,7 +110,9 @@ pipelineJob('gitops-multiarch-builds') { ls -la /proc/sys/fs/binfmt_misc/ || echo "binfmt_misc not available" docker buildx create --use --name multiarch-builder || docker buildx use multiarch-builder docker buildx inspect --bootstrap - ''' + """ + + sh exec } }