Removes duplicate longhorn-kafka StorageClass managed by Kafka chart. All applications now use single 'longhorn' StorageClass (3 replicas, Immediate binding). Changes: - Kafka chart: use 'longhorn' instead of 'longhorn-kafka' - Delete Kafka StorageClass template (no longer needed) - Update longhorn-storageclass.yaml to match deployed config (Immediate, not WaitForFirstConsumer) Existing Kafka PVCs remain bound to old longhorn-kafka StorageClass (safe - no data loss). New PVCs will use unified 'longhorn' StorageClass.
30 lines
956 B
YAML
30 lines
956 B
YAML
# design.md §7b: cluster-specific values for the homelab environment.
|
|
# No secrets here — Authentik client secret etc. flow through the existing
|
|
# Vault/talos-cli pattern, referenced at deploy time, not inlined.
|
|
namespace: sqs
|
|
|
|
kafkaCluster:
|
|
nodePool:
|
|
replicas: 3
|
|
storage:
|
|
# Use unified longhorn StorageClass (3 replicas, Immediate binding)
|
|
class: longhorn
|
|
# Per-node headroom: with 3 nodes and existing PVCs, estimate ~100+ Gi total
|
|
# available. Each node hosts one replica of all 3 broker volumes, so 3 *
|
|
# sizeGi must fit. Monitor usage during Kafka deployment.
|
|
sizeGi: 10
|
|
resources:
|
|
memory: 5Gi
|
|
cpu: "2"
|
|
|
|
redis:
|
|
storageClass: longhorn
|
|
memoryLimit: 1Gi
|
|
|
|
managementService:
|
|
ingress:
|
|
host: kmsvc.riotpiao.com
|
|
clusterIssuer: homelab-ca
|
|
authentikIssuerURL: "https://authentik.riotpiao.com/application/o/kafaka/"
|
|
authentikAudience: "QI0gPtR99ar8VvhK8Tqox4SDkTKzbNU7lbgwBNSc"
|