fix(k8s): correct image registry path to 192.168.0.110:5000

harbor.wooo.work TLS 證書問題,改用 IP 直連

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
OG T
2026-03-22 19:17:58 +08:00
parent 241e105d72
commit d4fbdb0331
4 changed files with 9 additions and 9 deletions

View File

@@ -32,8 +32,8 @@ spec:
containers:
- name: web
# 映像標籤由 CI/CD 動態注入 (格式: {sha}-{run_id})
# Harbor 金庫: 110 主機 (harbor.wooo.work)
image: harbor.wooo.work/awoooi/web:IMAGE_TAG_PLACEHOLDER
# Harbor 金庫: 110 主機 (192.168.0.110:5000)
image: 192.168.0.110:5000/library/web:IMAGE_TAG_PLACEHOLDER
imagePullPolicy: Always
ports:
- containerPort: 3000

View File

@@ -35,8 +35,8 @@ spec:
containers:
- name: api
# 映像標籤由 CI/CD 動態注入 (格式: {sha}-{run_id})
# Harbor 金庫: 110 主機 (harbor.wooo.work)
image: harbor.wooo.work/awoooi/api:IMAGE_TAG_PLACEHOLDER
# Harbor 金庫: 110 主機 (192.168.0.110:5000)
image: 192.168.0.110:5000/library/api:IMAGE_TAG_PLACEHOLDER
imagePullPolicy: Always
ports:
- containerPort: 8000

View File

@@ -37,8 +37,8 @@ spec:
containers:
- name: worker
# 映像標籤由 CI/CD 動態注入 (格式: {sha}-{run_id})
# Harbor 金庫: 110 主機 (harbor.wooo.work)
image: harbor.wooo.work/awoooi/api:IMAGE_TAG_PLACEHOLDER
# Harbor 金庫: 110 主機 (192.168.0.110:5000)
image: 192.168.0.110:5000/library/api:IMAGE_TAG_PLACEHOLDER
imagePullPolicy: Always
# Worker 模式啟動 (非 HTTP 服務)
command: ["python", "-m", "src.workers.signal_worker"]

View File

@@ -26,9 +26,9 @@ resources:
- 08-deployment-worker.yaml # Phase 6.5: Signal Worker
# 映像配置 (Tag 由 CI 動態注入)
# Harbor 金庫: 110 主機 (harbor.wooo.work)
# Harbor 金庫: 110 主機 (192.168.0.110:5000)
images:
- name: harbor.wooo.work/awoooi/web
- name: 192.168.0.110:5000/library/web
# newTag: 由 CI 注入,禁止在此寫死
- name: harbor.wooo.work/awoooi/api
- name: 192.168.0.110:5000/library/api
# newTag: 由 CI 注入,禁止在此寫死