Skip to content

Commit 6ff687e

Browse files
committed
Update charts with latest changes
1 parent b7d3f81 commit 6ff687e

File tree

5 files changed

+10
-6
lines changed

5 files changed

+10
-6
lines changed

wiz-kubernetes-integration/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ apiVersion: v2
22
name: wiz-kubernetes-integration
33
description: A Helm chart for Kubernetes
44
type: application
5-
version: 0.2.104
5+
version: 0.2.105
66
appVersion: ""
77
# Dependencies for wiz-kubernetes connector and wiz-admission-controller and wiz-sensor
88
dependencies:
@@ -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

wiz-sensor/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: wiz-sensor
33
description: Wiz Sensor helm chart
44
type: application
55
home: https://www.wiz.io/
6-
version: 1.0.7327
7-
appVersion: 1.0.7325
6+
version: 1.0.7500
7+
appVersion: 1.0.7500
88
annotations:
99
diskScanAppVersion: 1.1.21

wiz-sensor/templates/_helpers.tpl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ Sensor image tag
4343
Disk 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
{{/*

wiz-sensor/templates/daemonset.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff 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:

wiz-sensor/values.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,9 +110,11 @@ subscriptionTags: {} # Optional. List of key: value tags to be added to Subscrip
110110
fixedDefsVersion: ""
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.
115116
allowKubeletCommunication: false
117+
forceKubeletCommunication: false
116118

117119
# enable liveness probe for the sensor container
118120
livenessProbe:

0 commit comments

Comments
 (0)