From 6a4f0f24168fdd77f5c33ccabffde8d3b22f1fd7 Mon Sep 17 00:00:00 2001 From: Noopduck Date: Fri, 25 Jul 2025 11:42:21 +0200 Subject: [PATCH 1/3] Update 09-worker-daemon-set.yaml Changed hostNetwork into an overridable value --- helm-chart/templates/09-worker-daemon-set.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/helm-chart/templates/09-worker-daemon-set.yaml b/helm-chart/templates/09-worker-daemon-set.yaml index a183eb365..6e6a4ed09 100644 --- a/helm-chart/templates/09-worker-daemon-set.yaml +++ b/helm-chart/templates/09-worker-daemon-set.yaml @@ -329,7 +329,7 @@ spec: readOnly: true {{- end }} dnsPolicy: ClusterFirstWithHostNet - hostNetwork: true + hostNetwork: {{ .Values.hostNetwork }} serviceAccountName: {{ include "kubeshark.serviceAccountName" . }} {{- if .Values.tap.tolerations.workers }} tolerations: From 6fe18636f7cb475ae36895931cef265ca5462ab9 Mon Sep 17 00:00:00 2001 From: Noopduck Date: Fri, 25 Jul 2025 11:46:40 +0200 Subject: [PATCH 2/3] Update values.yaml Added hostNetwork into values, defaults to true. --- helm-chart/values.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/helm-chart/values.yaml b/helm-chart/values.yaml index 6686cf8d1..450aa3422 100644 --- a/helm-chart/values.yaml +++ b/helm-chart/values.yaml @@ -1,4 +1,6 @@ # find a detailed description here: https://github.com/kubeshark/kubeshark/blob/master/helm-chart/README.md +hostNetwork: true + tap: docker: registry: docker.io/kubeshark From 7f30c271864bcdcd17954e33bf27e026290531e3 Mon Sep 17 00:00:00 2001 From: Noopduck Date: Fri, 25 Jul 2025 12:03:13 +0200 Subject: [PATCH 3/3] Update values.yaml Placed hostNetwork: true as default above serviceMesh. --- helm-chart/values.yaml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/helm-chart/values.yaml b/helm-chart/values.yaml index 450aa3422..a168c3f90 100644 --- a/helm-chart/values.yaml +++ b/helm-chart/values.yaml @@ -1,6 +1,4 @@ # find a detailed description here: https://github.com/kubeshark/kubeshark/blob/master/helm-chart/README.md -hostNetwork: true - tap: docker: registry: docker.io/kubeshark @@ -78,6 +76,7 @@ tap: periodSeconds: 5 successThreshold: 1 failureThreshold: 3 + hostNetwork: true serviceMesh: true tls: true disableTlsLog: true