From 7c58a2a35815ebc56063e46f9d45de90f1ba9b37 Mon Sep 17 00:00:00 2001 From: Bastian de Byl Date: Sat, 6 Jun 2026 19:24:14 -0400 Subject: [PATCH] fulfillr prod: bump to 20260606.2231 (immutable notes + go-store v0.2.1) --- ansible/roles/gitea-actions/templates/Containerfile.ci | 10 ++++++++++ ansible/roles/podman/tasks/main.yml | 4 ++-- 2 files changed, 12 insertions(+), 2 deletions(-) diff --git a/ansible/roles/gitea-actions/templates/Containerfile.ci b/ansible/roles/gitea-actions/templates/Containerfile.ci index 07d641a..b7d092e 100644 --- a/ansible/roles/gitea-actions/templates/Containerfile.ci +++ b/ansible/roles/gitea-actions/templates/Containerfile.ci @@ -22,3 +22,13 @@ RUN curl -fsSL "https://awscli.amazonaws.com/awscli-exe-linux-x86_64.zip" -o /tm && unzip -q /tmp/awscliv2.zip -d /tmp \ && /tmp/aws/install \ && rm -rf /tmp/aws /tmp/awscliv2.zip + +# Terraform via tfenv — workflows can pin a version with a .terraform-version +# file (or TFENV_TERRAFORM_VERSION); the image ships "latest" as the default. +ENV TFENV_ROOT=/opt/tfenv +ARG TFENV_TERRAFORM_VERSION=latest +RUN git clone --depth=1 https://github.com/tfutils/tfenv.git "${TFENV_ROOT}" \ + && ln -s "${TFENV_ROOT}/bin/tfenv" /usr/local/bin/tfenv \ + && ln -s "${TFENV_ROOT}/bin/terraform" /usr/local/bin/terraform \ + && tfenv install "${TFENV_TERRAFORM_VERSION}" \ + && tfenv use "${TFENV_TERRAFORM_VERSION}" diff --git a/ansible/roles/podman/tasks/main.yml b/ansible/roles/podman/tasks/main.yml index 4eb62e8..75334e1 100644 --- a/ansible/roles/podman/tasks/main.yml +++ b/ansible/roles/podman/tasks/main.yml @@ -78,13 +78,13 @@ - import_tasks: containers/debyltech/fulfillr.yml vars: - image: git.debyl.io/debyltech/fulfillr:20260606.1840 + image: git.debyl.io/debyltech/fulfillr:20260606.2231 tags: debyltech, fulfillr # Staging back-office (fulfillr-dev.debyltech.com) — same image, staging Turso config. - import_tasks: containers/debyltech/fulfillr-dev.yml vars: - image: git.debyl.io/debyltech/fulfillr:20260606.1840 + image: git.debyl.io/debyltech/fulfillr:20260606.2231 tags: debyltech, fulfillr-dev - import_tasks: containers/debyltech/uptime-kuma.yml