From 7b778aeb54046622031336d331c40d6b8655f25c Mon Sep 17 00:00:00 2001 From: rod Date: Sun, 17 May 2026 13:27:59 +0200 Subject: [PATCH] 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 --- k8s/base/manifest.yaml | 2 +- k8s/base/values.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/k8s/base/manifest.yaml b/k8s/base/manifest.yaml index 44b1fe2..4c43681 100644 --- a/k8s/base/manifest.yaml +++ b/k8s/base/manifest.yaml @@ -44,7 +44,7 @@ spec: spec: containers: - name: hello-svc - image: "git.samidare.dev/rod/hello-svc:latest" + image: "synologynas.local:3000/rod/hello-svc:latest" imagePullPolicy: Always ports: - containerPort: 8080 diff --git a/k8s/base/values.yaml b/k8s/base/values.yaml index bde17bb..47eff4f 100644 --- a/k8s/base/values.yaml +++ b/k8s/base/values.yaml @@ -3,7 +3,7 @@ replicaCount: 1 image: - repository: git.samidare.dev/rod/hello-svc + repository: synologynas.local:3000/rod/hello-svc pullPolicy: Always tag: "latest"