fix: missing args parameter in helm.release_upgrade function
diff --git a/_modules/helm.py b/_modules/helm.py
index c92f4d2..21877a2 100644
--- a/_modules/helm.py
+++ b/_modules/helm.py
@@ -350,7 +350,7 @@
     return _cmd_and_result(
       'upgrade', name, chart_name,
       '--namespace', namespace,  
-      **kwargs
+      *args, **kwargs
     )
 
 def install_chart_dependencies(chart_path, **kwargs):