From a1dd91e56fe06a46fff2b277d8fe8372a91efc60 Mon Sep 17 00:00:00 2001 From: Story Crater Bot <19826264+Riotpiaole@users.noreply.github.com> Date: Mon, 13 Jul 2026 10:31:22 -0700 Subject: [PATCH] feat: point SQS charts to public GHCR image Forgejo registry unreachable from worker nodes (network isolation + host-to-ClusterIP routing gaps). Both management-service and queue-operator now ship from the same public GHCR image, with queue-operator selected via command override. --- k8s/sqs/charts/management-service/values.yaml | 2 +- k8s/sqs/charts/queue-crd/templates/operator-deployment.yaml | 1 + k8s/sqs/charts/queue-crd/values.yaml | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/k8s/sqs/charts/management-service/values.yaml b/k8s/sqs/charts/management-service/values.yaml index 4399d7f..215d6a7 100644 --- a/k8s/sqs/charts/management-service/values.yaml +++ b/k8s/sqs/charts/management-service/values.yaml @@ -2,7 +2,7 @@ namespace: sqs replicaCount: 3 image: - repository: forgejo.riotpiao.homelab.com/rock/kafka-management-service + repository: ghcr.io/riotpiaole/kmsvc-management-service tag: latest pullPolicy: Always diff --git a/k8s/sqs/charts/queue-crd/templates/operator-deployment.yaml b/k8s/sqs/charts/queue-crd/templates/operator-deployment.yaml index 22c9a57..9e4aca8 100644 --- a/k8s/sqs/charts/queue-crd/templates/operator-deployment.yaml +++ b/k8s/sqs/charts/queue-crd/templates/operator-deployment.yaml @@ -18,6 +18,7 @@ spec: - name: queue-operator image: "{{ .Values.image.repository }}:{{ .Values.image.tag }}" imagePullPolicy: {{ .Values.image.pullPolicy }} + command: ["/queue-operator"] env: - name: KMSVC_KAFKA_BROKERS value: {{ .Values.kafkaBrokers | quote }} diff --git a/k8s/sqs/charts/queue-crd/values.yaml b/k8s/sqs/charts/queue-crd/values.yaml index 6828ba8..d377682 100644 --- a/k8s/sqs/charts/queue-crd/values.yaml +++ b/k8s/sqs/charts/queue-crd/values.yaml @@ -1,7 +1,7 @@ namespace: sqs image: - repository: forgejo.riotpiao.homelab.com/rock/kafka-management-service-queue-operator + repository: ghcr.io/riotpiaole/kmsvc-management-service tag: latest pullPolicy: Always