File tree Expand file tree Collapse file tree 5 files changed +10
-6
lines changed
wiz-kubernetes-integration Expand file tree Collapse file tree 5 files changed +10
-6
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ apiVersion: v2
22name : wiz-kubernetes-integration
33description : A Helm chart for Kubernetes
44type : application
5- version : 0.2.104
5+ version : 0.2.105
66appVersion : " "
77# Dependencies for wiz-kubernetes connector and wiz-admission-controller and wiz-sensor
88dependencies :
@@ -16,5 +16,5 @@ dependencies:
1616 condition : wiz-admission-controller.enabled
1717 - name : wiz-sensor
1818 repository : https://wiz-sec.github.io/charts
19- version : " >=1.0.7326 "
19+ version : " >=1.0.7500 "
2020 condition : wiz-sensor.enabled
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ name: wiz-sensor
33description : Wiz Sensor helm chart
44type : application
55home : https://www.wiz.io/
6- version : 1.0.7327
7- appVersion : 1.0.7325
6+ version : 1.0.7500
7+ appVersion : 1.0.7500
88annotations :
99 diskScanAppVersion : 1.1.21
Original file line number Diff line number Diff line change @@ -43,7 +43,7 @@ Sensor image tag
4343Disk scanner image tag
4444*/} }
4545{ {- define " wiz-sensor.diskScanTag" -} }
46- { {- coalesce .Values.image.diskScanTag .Chart.Annotations.diskScanAppVersion } }
46+ { { .Values.image.diskScanTag | default (printf " v%s " .Chart.Annotations.diskScanAppVersion) } }
4747{ {- end } }
4848
4949{ {/*
Original file line number Diff line number Diff line change @@ -333,6 +333,8 @@ spec:
333333 value : {{ .Chart.Version }}
334334 - name : ALLOW_KUBELET_COMMUNICATION
335335 value : {{ .Values.allowKubeletCommunication | quote }}
336+ - name : FORCE_KUBELET_COMMUNICATION
337+ value : {{ .Values.forceKubeletCommunication | quote }}
336338 {{- end }}
337339
338340 volumeMounts :
Original file line number Diff line number Diff line change @@ -110,9 +110,11 @@ subscriptionTags: {} # Optional. List of key: value tags to be added to Subscrip
110110fixedDefsVersion : " "
111111
112112# The sensor will attempt to communicate with local kubelet instead of api-server for pod information.
113- # Note that if kubelet communication fails we will still query api-server for pod information.
113+ # If kubelet communication fails, the sensor will fallback to querying the api-server for pod information.
114114# Non-pod information, like controllers and namespaces are always queried directly from api-server.
115+ # Set "forceKubeletCommunication" to true to force the sensor to use kubelet communication and not fallback to api-server.
115116allowKubeletCommunication : false
117+ forceKubeletCommunication : false
116118
117119# enable liveness probe for the sensor container
118120livenessProbe :
You can’t perform that action at this time.
0 commit comments