From 0fd66b261a56f998403f2a29132d95793e5a557c Mon Sep 17 00:00:00 2001 From: Julian Cuni Date: Wed, 2 Sep 2026 18:29:46 +0200 Subject: [PATCH] feat(resources): add park-2 booth Stack (stage tier) New real booth, same tier as park-buzi: tracks stage, pinned stage-, own park_2_* secret refs. Periphery had the known /etc/komodo root_directory permission bug on --user install (wiki gotcha #9); fixed and confirmed OK in Core before adding this Stack. --- komodo/resources.toml | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/komodo/resources.toml b/komodo/resources.toml index 408116d..fdbc5b0 100644 --- a/komodo/resources.toml +++ b/komodo/resources.toml @@ -57,3 +57,33 @@ JWT_SECRET=[[park_buzi_jwt_secret]] EVENT_SIGNING_KEY=[[park_buzi_event_signing_key]] BACKUP_KEY=[[park_buzi_backup_key]] """ + +############################################################################## + +[[stack]] +name = "park-2" +[stack.config] +server = "park-2" +git_provider = "git.infra.msai.al" +git_account = "komodo" +repo = "mca/parking_solution" +branch = "stage" +file_paths = [ + "docker-compose.yml", + "docker-compose.prod.yml" +] +registry_provider = "git.infra.msai.al" +registry_account = "komodo" +environment = """ +REGISTRY=git.infra.msai.al/mca/parking_solution +# Staging booth: pinned immutable stage-. After each promotion (merge dev → stage, CI builds +# :stage-), bump this to the new sha and re-sync/deploy from Core. The moving `:stage` tag +# exists as the pointer; we deploy the sha, not the mover. +TAG=stage-28bd838 +COOKIE_SECURE=0 +VISION_ENABLED=1 +WS_ALLOWED_ORIGINS= +JWT_SECRET=[[park_2_jwt_secret]] +EVENT_SIGNING_KEY=[[park_2_event_signing_key]] +BACKUP_KEY=[[park_2_backup_key]] +"""