Use internal registry URL for image pulls

git.samidare.dev resolves to the external IP but router blocks inbound
traffic on 80/443. Switch to synologynas.local:3000 which resolves via
the home router DNS and is reachable from within the cluster.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
rod
2026-05-17 13:27:59 +02:00
parent 5d9a159e07
commit 7b778aeb54
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -44,7 +44,7 @@ spec:
spec: spec:
containers: containers:
- name: hello-svc - name: hello-svc
image: "git.samidare.dev/rod/hello-svc:latest" image: "synologynas.local:3000/rod/hello-svc:latest"
imagePullPolicy: Always imagePullPolicy: Always
ports: ports:
- containerPort: 8080 - containerPort: 8080
+1 -1
View File
@@ -3,7 +3,7 @@
replicaCount: 1 replicaCount: 1
image: image:
repository: git.samidare.dev/rod/hello-svc repository: synologynas.local:3000/rod/hello-svc
pullPolicy: Always pullPolicy: Always
tag: "latest" tag: "latest"