Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion helm_sdkpy/actions.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down