Hi!
I have installed Alloy in a kubernetes cluster via Helm Chart.
I have read this and this articles about clustering, but i still don’t fully understand the feature.
-
If I have set on the Helm chart values
controller.type = statefulset
, what’s the difference between settingalloy.clustering.enabled = true
or just having more replicas (controller.replicas = N
). Does clustering make sense withstatefulset
ordeployment
? -
If I have set on the Helm chart values
controller.type = daemonset
, so i have only one pod in all nodes, and each alloy pod scrape its own node, what is the difference if we setalloy.clustering.enabled = true
?
Thanks!