We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6fda035 commit a2a33c0Copy full SHA for a2a33c0
1 file changed
internal/common/ciReleaseFunctions.go
@@ -23,8 +23,8 @@ func UninstallHelmRelease(kubernetesClient *kubernetes.Clientset, helmClient *he
23
uninstall := helmAction.NewUninstall(helmClient)
24
uninstall.KeepHistory = false // Remove release secrets as well
25
uninstall.DisableHooks = false
26
- uninstall.Timeout = 300 // seconds, adjust as needed
27
- uninstall.Wait = true // Wait for resources to be deleted
+ uninstall.Timeout = 300 * time.Second // seconds, adjust as needed
+ uninstall.Wait = true // Wait for resources to be deleted
28
29
resp, err := uninstall.Run(releaseName)
30
if err != nil {
0 commit comments