diff --git a/helm_sdkpy/actions.py b/helm_sdkpy/actions.py index c72b011..b48675b 100644 --- a/helm_sdkpy/actions.py +++ b/helm_sdkpy/actions.py @@ -372,7 +372,12 @@ def _uninstall(): name_cstr = ffi.new("char[]", release_name.encode("utf-8")) result = self._lib.helm_sdkpy_uninstall( - self.config._handle_value, name_cstr, 1 if wait else 0, timeout, result_json + self.config._handle_value, + name_cstr, + 1 if wait else 0, + timeout, + 0, # skip_schema_validation - not needed for uninstall + result_json, ) if result != 0: