From 94f6b04c281273e9d7697f7c9e5b32c73b606bf7 Mon Sep 17 00:00:00 2001 From: Hermes Agent Date: Tue, 26 May 2026 00:49:08 +0000 Subject: [PATCH] add Strimzi operator as kustomize remote URL (GitOps) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Reference Strimzi 1.0.0 install bundle directly from kustomization. No separate install step needed — kubectl apply -k handles CRDs + operator in one shot before the Kafka CR. Pinned to 1.0.0 for reproducible deployments. --- apps/base/customer1/siriusdevops-db/kustomization.yaml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/apps/base/customer1/siriusdevops-db/kustomization.yaml b/apps/base/customer1/siriusdevops-db/kustomization.yaml index e19a542..a57f838 100644 --- a/apps/base/customer1/siriusdevops-db/kustomization.yaml +++ b/apps/base/customer1/siriusdevops-db/kustomization.yaml @@ -11,5 +11,7 @@ resources: # Trading platform DB (migrated from hermes-pgdb) - trading-db-credentials.yaml - trading-data-db.yaml - # Kafka via Strimzi operator (replaces manual StatefulSet) + # Strimzi Kafka operator (CRDs + operator deployment) + - https://strimzi.io/install/1.0.0?namespace=customer1 + # Kafka cluster (applied after operator CRDs are available) - trading-kafka.yaml