fix: revert image names to match service.mk directory-derived names

service.mk builds homelab/<dirname>: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 <noreply@anthropic.com>
This commit is contained in:
Gonçalo Rodrigues 2026-06-13 16:04:26 +01:00
parent e562ff27bf
commit b27268febe
3 changed files with 3 additions and 3 deletions

View File

@ -17,7 +17,7 @@ spec:
spec: spec:
containers: containers:
- name: gateway - name: gateway
image: homelab/auth-gateway:latest image: homelab/gateway:latest
imagePullPolicy: IfNotPresent imagePullPolicy: IfNotPresent
ports: ports:
- name: http - name: http

View File

@ -17,7 +17,7 @@ spec:
spec: spec:
containers: containers:
- name: users - name: users
image: homelab/auth-users:latest image: homelab/users:latest
imagePullPolicy: IfNotPresent imagePullPolicy: IfNotPresent
ports: ports:
- name: http - name: http

View File

@ -17,7 +17,7 @@ spec:
spec: spec:
containers: containers:
- name: api - name: api
image: homelab/finance-api:latest image: homelab/api:latest
imagePullPolicy: IfNotPresent imagePullPolicy: IfNotPresent
ports: ports:
- name: http - name: http