Plan: Transfer urbalurba-infrastructure to helpers-no
Status: Complete
Goal: Transfer this repo from terchris/urbalurba-infrastructure to helpers-no/urbalurba-infrastructure with zero downtime.
Priority: Medium
Completed: 2026-03-19
Overall plan: See /Users/terje.christensen/learn/projects-2026/testing/github-helpers-no/INVESTIGATE-move-repos-to-helpers-no.md
Prerequisites
- PLAN-transfer-to-helpers-no in devcontainer-toolbox must be complete (container image at
ghcr.io/helpers-no/) - Recommended: sovereignsky-site and dev-templates transfers complete first
This repo transfers last — it is the most complex and depends on devcontainer-toolbox.
Problem
The repo lived under terchris/urbalurba-infrastructure. There were 85 references to terchris across 41 files. This repo also published its own container images (postgresql) to ghcr.io/terchris/ and had GitHub Actions workflows that needed updating.
Phase 1: Create branch and fix references
Tasks
- 1.1 Create branch
move-to-helpers-no - 1.2 Replace
ghcr.io/terchris/devcontainer-toolbox→ghcr.io/helpers-no/devcontainer-toolboxin:.devcontainer/devcontainer.json
- 1.3 Replace
ghcr.io/terchris/urbalurba-→ghcr.io/helpers-no/urbalurba-in own container images:containers/postgresql/build.shcontainers/postgresql/Dockerfilemanifests/042-database-postgresql-config.yaml
- 1.4 Update GitHub Actions workflow:
.github/workflows/build-postgresql-container.yml— update image registry path
- 1.5 Replace
terchris/urbalurba-infrastructure→helpers-no/urbalurba-infrastructurein install/CLI scripts:uisscriptuis.ps1website/static/install.shwebsite/static/install.ps1website/static/uisandwebsite/static/uis.ps1provision-host/uis/manage/uis-cli.shprovision-host/uis/manage/uis-backstage-catalog.sh
- 1.6 Update docs/website references (~15 active doc files):
website/docusaurus.config.tswebsite/docs/— about, index, getting-started, contributors, services, developing, reference, ai-developer/README
- 1.7
.gitignore—/terchrisentry kept (contains local secrets folder) - 1.8 Commit all changes to branch — merged as PR #94
Validation
All references updated. Grep returns zero critical hits.
Phase 2: Transfer repo and update container images
Tasks
- 2.1 Transfer repo on GitHub: Settings → Transfer →
helpers-no - 2.2 Verify GitHub redirect works
- 2.3
Check GH Actions has permissions to publish to— N/A: custom PostgreSQL container was removed entirely in PR #95 (Bitnami now ships all extensions pre-built)ghcr.io/helpers-no/(postgresql image) - 2.4 Merge
move-to-helpers-nobranch (PR #94) - 2.5
Trigger container image builds— N/A: no custom container images remain
Validation
Repo is at https://github.com/helpers-no/urbalurba-infrastructure.
Phase 3: Re-enable GitHub Pages
Tasks
- 3.1 GitHub Pages survived the transfer — no re-enable needed
- 3.2 Custom domain:
uis.sovereignsky.no(was already configured, notdct.sovereignsky.noas originally planned) - 3.3 Site is live at https://uis.sovereignsky.no/
Validation
Website loads correctly.
Phase 4: Update local clone and Kubernetes manifests
Tasks
- 4.1 Update local git remote:
git remote set-url origin https://github.com/helpers-no/urbalurba-infrastructure.git - 4.2 No running clusters referenced old image paths at time of transfer
Validation
git remote -v shows helpers-no/urbalurba-infrastructure.
Bonus: PostgreSQL Container Removal (PR #95)
During the transfer, the custom PostgreSQL container build (ghcr.io/helpers-no/urbalurba-postgresql) was failing because Bitnami removed all version-pinned Docker tags. Investigation revealed that Bitnami's current image (PostgreSQL 18.3) now ships all 8 extensions we previously built manually:
| Extension | Version | Purpose |
|---|---|---|
| pgvector | 0.8.2 | Vector similarity search for AI embeddings |
| PostGIS | 3.6.2 | Geospatial data types and queries |
| hstore | 1.8 | Key-value pairs within a single column |
| ltree | 1.3 | Hierarchical tree-like data |
| uuid-ossp | built-in | UUID generation |
| pg_trgm | 1.6 | Fuzzy text search and trigram matching |
| btree_gin | 1.3 | Additional indexing strategies |
| pgcrypto | 1.4 | Cryptographic functions |
Resolution: Removed the custom container entirely (Dockerfile, build script, CI workflow, docs page) and switched to bitnami/postgresql pinned by digest. All 8 dependent services verified correct.
Acceptance Criteria
- Repo is at
https://github.com/helpers-no/urbalurba-infrastructure -
Container images publish to— N/A: no custom container imagesghcr.io/helpers-no/ - Website is live at
uis.sovereignsky.no - Install scripts (
uis,uis.ps1) work from new location - GitHub Actions workflows run successfully
- No remaining
terchrisreferences in critical scripts/manifests - Old URL redirects work