From b27268febebadb7b47d742bf78e6b99e9e75fb1b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gon=C3=A7alo=20Rodrigues?= Date: Sat, 13 Jun 2026 16:04:26 +0100 Subject: [PATCH] fix: revert image names to match service.mk directory-derived names service.mk builds homelab/:latest so manifests must match: - homelab/api:latest (finance/services/api) - homelab/users:latest (auth/services/users) - homelab/gateway:latest (auth/services/gateway) Co-Authored-By: Claude Sonnet 4.6 --- apps/auth/services/gateway/k8s/deployment.yaml | 2 +- apps/auth/services/users/k8s/deployment.yaml | 2 +- apps/finance/services/api/k8s/deployment.yaml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/apps/auth/services/gateway/k8s/deployment.yaml b/apps/auth/services/gateway/k8s/deployment.yaml index 25b87ba..ade73ba 100644 --- a/apps/auth/services/gateway/k8s/deployment.yaml +++ b/apps/auth/services/gateway/k8s/deployment.yaml @@ -17,7 +17,7 @@ spec: spec: containers: - name: gateway - image: homelab/auth-gateway:latest + image: homelab/gateway:latest imagePullPolicy: IfNotPresent ports: - name: http diff --git a/apps/auth/services/users/k8s/deployment.yaml b/apps/auth/services/users/k8s/deployment.yaml index 0c27fbc..84e3d1d 100644 --- a/apps/auth/services/users/k8s/deployment.yaml +++ b/apps/auth/services/users/k8s/deployment.yaml @@ -17,7 +17,7 @@ spec: spec: containers: - name: users - image: homelab/auth-users:latest + image: homelab/users:latest imagePullPolicy: IfNotPresent ports: - name: http diff --git a/apps/finance/services/api/k8s/deployment.yaml b/apps/finance/services/api/k8s/deployment.yaml index 4c19aa6..ccf2151 100644 --- a/apps/finance/services/api/k8s/deployment.yaml +++ b/apps/finance/services/api/k8s/deployment.yaml @@ -17,7 +17,7 @@ spec: spec: containers: - name: api - image: homelab/finance-api:latest + image: homelab/api:latest imagePullPolicy: IfNotPresent ports: - name: http