You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
golden-diff: clean .compile ## Diff compile output against the reference version. Review output and run `make gen-golden golden-diff` if this target fails.
golden-diff-all: $(test_instances)## Run golden-diff for all instances. Note: this doesn't work when running make with multiple parallel jobs (-j != 1).
77
+
78
+
.PHONY: gen-golden-all
79
+
gen-golden-all: recursive_target=gen-golden
80
+
gen-golden-all: $(test_instances)## Run gen-golden for all instances. Note: this doesn't work when running make with multiple parallel jobs (-j != 1).
81
+
82
+
.PHONY: lint_kubent_all
83
+
lint_kubent_all: recursive_target=lint_kubent
84
+
lint_kubent_all: $(test_instances)## Lint deprecated Kubernetes API versions for all golden test instances. Will exit on first error. Note: this doesn't work when running make with multiple parallel jobs (-j != 1).
local tolerations = params.driver_daemonset_tolerations;
73
-
local resourcesInParams = if object.kind == 'DaemonSet'then
74
-
params.resources.csi_driver
75
-
elseif object.kind == 'StatefulSet'then
76
-
params.resources.controller
63
+
localwarnDeprecatedParam(o) =
64
+
ifstd.objectHas(params, 'version') then
65
+
std.trace(
66
+
'Component parameter `version` is removed and its value is ignored. Please use parameters `charts` and `images` to override the csi-cloudscale version.',
This guide describes the steps to perform an upgrade of the component from version 3.x to 4.x.
4
+
5
+
== Migration guide
6
+
7
+
Parameter `version` has been removed in component version v4.0.0.
8
+
If you use this parameter to deploy a specific version of the CSI driver, you should set parameter `images.cloudscale-csi-plugin.tag` to the desired version.
9
+
10
+
Alternatively, you may want to select a specific Helm chart version.
11
+
See the https://github.com/cloudscale-ch/csi-cloudscale/releases?q=helm-csi&expanded=true[helm-csi-cloudscale GitHub releases] for available Helm chart versions.
12
+
The chart version can be specified in parameter `charts.csi-cloudscale.version`.
0 commit comments