Skip to content

Commit b95d459

Browse files
committed
Update charts with latest changes
1 parent eb4a0a9 commit b95d459

File tree

5 files changed

+14
-10
lines changed

5 files changed

+14
-10
lines changed

wiz-admission-controller/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,14 @@ type: application
55
# This is the chart version. This version number should be incremented each time you make changes
66
# to the chart and its templates, including the app version.
77
# Versions are expected to follow Semantic Versioning (https://semver.org/)
8-
version: 3.10.0
8+
version: 3.10.1
99
# This is the version number of the application being deployed. This version number should be
1010
# incremented each time you make changes to the application. Versions are not expected to
1111
# follow Semantic Versioning. They should reflect the version the application is using.
1212
# It is recommended to use it with quotes.
1313
appVersion: "2.9"
1414
dependencies:
1515
- name: wiz-common
16-
version: "0.1.8"
16+
version: "0.1.9"
1717
repository: https://wiz-sec.github.io/charts
1818
# repository: "file://../wiz-common" # Use this line to test the chart locally

wiz-broker/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@ apiVersion: v2
22
name: "wiz-broker"
33
description: Wiz Broker for tunneling http traffic to Wiz backend
44
type: application
5-
version: 2.3.9
5+
version: 2.3.10
66
appVersion: "2.7"
77
dependencies:
88
- name: wiz-common
9-
version: "0.1.8"
9+
version: "0.1.9"
1010
repository: https://wiz-sec.github.io/charts
1111
# repository: "file://../wiz-common" # Use this line to test the chart locally

wiz-common/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@ apiVersion: v2
22
name: wiz-common
33
description: Common library chart for shared templates
44
type: library
5-
version: 0.1.8
5+
version: 0.1.9

wiz-common/templates/_require_helm_version.tpl

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,11 @@
1010
{{- end -}}
1111
{{- end -}}
1212
13-
{{- if not (semverCompare ">=3.10.0" $helmVersion) }}
13+
{{/* Parse the version string and reconstruct a clean version with just major.minor.patch */}}
14+
{{- $parsedVersion := semver $helmVersion }}
15+
{{- $cleanVersion := printf "%d.%d.%d" $parsedVersion.Major $parsedVersion.Minor $parsedVersion.Patch }}
16+
17+
{{- if not (semverCompare ">=3.10.0" $cleanVersion) }}
1418
{{- printf "WARNING: This chart is intended for Helm client version 3.10.0 or higher. Found %s\n" $helmVersion | quote }}
1519
{{- end -}}
16-
{{- end -}}
20+
{{- end -}}

wiz-kubernetes-connector/Chart.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ type: application
1515
# This is the chart version. This version number should be incremented each time you make changes
1616
# to the chart and its templates, including the app version.
1717
# Versions are expected to follow Semantic Versioning (https://semver.org/)
18-
version: 3.3.12
18+
version: 3.3.13
1919

2020
# This is the version number of the application being deployed. This version number should be
2121
# incremented each time you make changes to the application. Versions are not expected to
@@ -27,9 +27,9 @@ dependencies:
2727
- name: wiz-broker
2828
repository: https://wiz-sec.github.io/charts
2929
# repository: "file://../wiz-broker" # Use this line to test the chart locally
30-
version: "2.3.9"
30+
version: "2.3.10"
3131
condition: wiz-broker.enabled
3232
- name: wiz-common
33-
version: "0.1.8"
33+
version: "0.1.9"
3434
repository: https://wiz-sec.github.io/charts
3535
# repository: "file://../wiz-common" # Use this line to test the chart locally

0 commit comments

Comments
 (0)