From 188495a8ffb1b47f381ca428c0e70d899101eb00 Mon Sep 17 00:00:00 2001 From: thilak Date: Thu, 24 Sep 2026 12:10:36 +0530 Subject: [PATCH] Bump the documented scout-collector chart to 0.6.0 The install guide pinned 0.5.5, which predates the kubernetes.io/os nodeSelector on the collectors. Every version available on charts.base14.io lacked that guard until today, so a customer adding a Windows node group to a cluster running scout-collector got the Linux collectors scheduled onto it, where they cannot start: the image manifest list is Linux-only, and the daemon mounts host paths with mountPropagation, which Windows pods do not support. 0.6.0 carries the guard, and adds opt-in Windows node support behind scout.windowsDaemon.enabled (default false, so this changes nothing for anyone who does not ask for it). 0.5.10 and 0.5.11 were mirrored to charts.base14.io at the same time, so the repo is no longer three versions behind charts.b14.dev. Verified against the live repo: helm pull --version 0.6.0 resolves, and rendering this page's own values.yaml example against it produces the expected resources with the OS guard present and no Windows resources. --- docs/instrument/collector-setup/kubernetes-helm-setup.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/instrument/collector-setup/kubernetes-helm-setup.md b/docs/instrument/collector-setup/kubernetes-helm-setup.md index c25a7ac5..7f2cbec9 100644 --- a/docs/instrument/collector-setup/kubernetes-helm-setup.md +++ b/docs/instrument/collector-setup/kubernetes-helm-setup.md @@ -59,7 +59,7 @@ helm repo add base14 https://charts.base14.io/ ``` ```bash -helm install scout base14/scout-collector --version 0.5.5 \ +helm install scout base14/scout-collector --version 0.6.0 \ --namespace scout --create-namespace -f values.yaml ``` @@ -73,7 +73,7 @@ helm repo add base14 https://charts.base14.io/ ``` ```bash -helm install scout base14/scout-collector --version 0.5.5 \ +helm install scout base14/scout-collector --version 0.6.0 \ --namespace scout --create-namespace -f values.yaml ```