kms: image base forgejo registry -> ghcr (ADR-0002 infra#21)
All checks were successful
ci/woodpecker/push/default Pipeline was successful
ci/woodpecker/push/build-cli Pipeline was successful

kms-website moves off in-cluster Woodpecker builds to GHA -> ghcr.
The kms-web-page deployment image is ignore_changes'd (CI sets the live
tag), so this repoint only governs future creates; package is PUBLIC so
no pull secret is wired. No CronJobs in this stack.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
This commit is contained in:
Viktor Barzin 2026-06-12 23:30:07 +00:00
parent fb88440ec4
commit 9f742b544c
2 changed files with 2 additions and 2 deletions

View file

@ -54,7 +54,7 @@ resource "kubernetes_deployment" "kms-web-page" {
name = "registry-credentials" name = "registry-credentials"
} }
container { container {
image = "forgejo.viktorbarzin.me/viktor/kms-website:${var.image_tag}" image = "ghcr.io/viktorbarzin/kms-website:${var.image_tag}"
name = "kms-web-page" name = "kms-web-page"
image_pull_policy = "IfNotPresent" image_pull_policy = "IfNotPresent"
resources { resources {

View file

@ -1,5 +1,5 @@
variable "image_tag" { variable "image_tag" {
type = string type = string
default = "latest" default = "latest"
description = "kms-website image tag pushed to forgejo.viktorbarzin.me/viktor/kms-website. Use 8-char git SHA in CI." description = "kms-website image tag pushed to ghcr.io/viktorbarzin/kms-website (ADR-0002 off-infra builds). Use 8-char git SHA in CI."
} }