2026-09-03 08:28:38 -07:00
|
|
|
# Wave 5 — Kafka (Strimzi operator + cluster CR), Redis infrastructure.
|
|
|
|
|
# Strimzi/Redis are public Helm charts; kafka-cluster is a local chart.
|
|
|
|
|
# queue-crd and management-service are managed by kmsvc-root (kmsvc-manage.git).
|
2026-07-20 08:22:53 -07:00
|
|
|
apiVersion: argoproj.io/v1alpha1
|
|
|
|
|
kind: Application
|
|
|
|
|
metadata:
|
|
|
|
|
name: strimzi-operator
|
|
|
|
|
namespace: argocd
|
|
|
|
|
annotations:
|
|
|
|
|
argocd.argoproj.io/sync-wave: "5"
|
|
|
|
|
spec:
|
|
|
|
|
project: homelab
|
|
|
|
|
source:
|
|
|
|
|
repoURL: https://strimzi.io/charts/
|
|
|
|
|
chart: strimzi-kafka-operator
|
|
|
|
|
targetRevision: 0.46.0
|
|
|
|
|
helm:
|
|
|
|
|
releaseName: strimzi-operator
|
|
|
|
|
destination:
|
|
|
|
|
server: https://kubernetes.default.svc
|
|
|
|
|
namespace: sqs
|
|
|
|
|
syncPolicy:
|
|
|
|
|
automated:
|
|
|
|
|
prune: true
|
|
|
|
|
selfHeal: true
|
|
|
|
|
syncOptions:
|
|
|
|
|
- CreateNamespace=true
|
|
|
|
|
---
|
|
|
|
|
apiVersion: argoproj.io/v1alpha1
|
|
|
|
|
kind: Application
|
|
|
|
|
metadata:
|
|
|
|
|
name: kmsvc-redis
|
|
|
|
|
namespace: argocd
|
|
|
|
|
annotations:
|
|
|
|
|
argocd.argoproj.io/sync-wave: "5"
|
|
|
|
|
spec:
|
|
|
|
|
project: homelab
|
|
|
|
|
source:
|
|
|
|
|
repoURL: https://charts.bitnami.com/bitnami
|
|
|
|
|
chart: redis
|
|
|
|
|
targetRevision: 20.6.0
|
2026-07-21 09:47:19 -07:00
|
|
|
helm:
|
|
|
|
|
# docker.io/bitnami stopped publishing version-pinned tags; bitnamilegacy
|
|
|
|
|
# mirrors them. allowInsecureImages silences the chart image-allowlist check.
|
|
|
|
|
values: |
|
|
|
|
|
global:
|
|
|
|
|
security:
|
|
|
|
|
allowInsecureImages: true
|
|
|
|
|
image:
|
|
|
|
|
repository: bitnamilegacy/redis
|
|
|
|
|
auth:
|
|
|
|
|
enabled: false
|
2026-07-20 08:22:53 -07:00
|
|
|
destination:
|
|
|
|
|
server: https://kubernetes.default.svc
|
|
|
|
|
namespace: sqs
|
|
|
|
|
syncPolicy:
|
|
|
|
|
automated:
|
|
|
|
|
prune: true
|
|
|
|
|
selfHeal: true
|
|
|
|
|
---
|
|
|
|
|
apiVersion: argoproj.io/v1alpha1
|
|
|
|
|
kind: Application
|
|
|
|
|
metadata:
|
|
|
|
|
name: kafka-cluster
|
|
|
|
|
namespace: argocd
|
|
|
|
|
annotations:
|
|
|
|
|
argocd.argoproj.io/sync-wave: "6"
|
|
|
|
|
spec:
|
|
|
|
|
project: homelab
|
|
|
|
|
source:
|
2026-08-25 11:20:26 -07:00
|
|
|
repoURL: https://forgejo.riotpiao.com/rock/homelab.git
|
2026-07-20 08:22:53 -07:00
|
|
|
targetRevision: main
|
2026-07-23 20:54:02 -07:00
|
|
|
path: k8s/apps/messaging/kafka-cluster
|
2026-07-20 08:22:53 -07:00
|
|
|
destination:
|
|
|
|
|
server: https://kubernetes.default.svc
|
|
|
|
|
namespace: sqs
|
|
|
|
|
syncPolicy:
|
|
|
|
|
automated:
|
|
|
|
|
prune: true
|
|
|
|
|
selfHeal: true
|
2026-09-03 08:28:38 -07:00
|
|
|
# queue-crd and management-service moved to kmsvc-manage.git repo
|
|
|
|
|
# Managed by kmsvc-root Application
|