From 8b41efc2879fb65123a1be03ddf24a4e93e1d0fe Mon Sep 17 00:00:00 2001 From: bussyjd Date: Sat, 27 Jun 2026 18:07:49 +0400 Subject: [PATCH] =?UTF-8?q?chore:=20bump=20frontend=20image=20to=20v0.1.28?= =?UTF-8?q?-rc0=20(draft=20=E2=80=94=20digest=20pending)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Bumps the obol-frontend Helm values image tag and the dev-frontend-reset justfile recipe to consume front-end v0.1.28-rc0 (ObolNetwork/obol-stack-front-end#417: bundled dependency bumps + probe-surface removal). DRAFT: the Helm pin is intentionally un-digested. The authoritative multi-arch sha256 digest only exists after the v0.1.28-rc0 image is published (front-end #417 merged + tag pushed + build-push-deploy). Re-pin tag: "v0.1.28-rc0@sha256:" and mark ready before merge. Claude-Session: https://claude.ai/code/session_01QXX79ZAedwYzBegvhkgjDV --- .../embed/infrastructure/values/obol-frontend.yaml.gotmpl | 6 ++++-- justfile | 2 +- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/internal/embed/infrastructure/values/obol-frontend.yaml.gotmpl b/internal/embed/infrastructure/values/obol-frontend.yaml.gotmpl index 26111ebd..0da93f50 100644 --- a/internal/embed/infrastructure/values/obol-frontend.yaml.gotmpl +++ b/internal/embed/infrastructure/values/obol-frontend.yaml.gotmpl @@ -46,8 +46,10 @@ image: pullPolicy: IfNotPresent # Digest-pinned: tag is informational, sha256 is authoritative. Eliminates # the mutable-tag attack surface called out by the v0.10.0-rc2 supply-chain - # review. Multi-arch index digest for v0.1.26 (linux/amd64 + linux/arm64). - tag: "v0.1.26@sha256:7a6109e43e3fd7461818f172b4c78fc0fb5a124a7c266cf68bd5bc08fff10858" + # review. TODO(v0.1.28-rc0): re-pin with the multi-arch index digest once the + # v0.1.28-rc0 image is published (front-end PR #417 merged + v0.1.28-rc0 tag + # pushed). This PR stays a DRAFT until the @sha256 digest is appended below. + tag: "v0.1.28-rc0" # DRAFT — append @sha256: before merge service: type: ClusterIP diff --git a/justfile b/justfile index 802f66b4..9bbde325 100644 --- a/justfile +++ b/justfile @@ -118,7 +118,7 @@ dev-frontend-reset: set -e echo "→ Resetting frontend to released image" obol kubectl set image deployment/obol-frontend-obol-app \ - obol-app=obolnetwork/obol-stack-front-end:v0.1.25 -n obol-frontend + obol-app=obolnetwork/obol-stack-front-end:v0.1.28-rc0 -n obol-frontend obol kubectl rollout restart deployment/obol-frontend-obol-app -n obol-frontend obol kubectl rollout status deployment/obol-frontend-obol-app -n obol-frontend --timeout=120s echo "✓ Frontend reset to released image"