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
* force flag
* tested for unrecognized crd
* local mod
* making sure doesnt throw error with force flag
* removed redundnat
* tidy
* less dangerous error logs
* log suggestion in pre installation checks
* before updated autopilot
* missing codegen
* no local ap
* bump
* tidy - before merging ap
* codegen
* bin name
* with codegen
* log with bin name
returnfmt.Errorf("failed to get deployment '%s': %w", store.Get().ArgoCDServerName, err)
432
434
}
433
435
434
-
returnfmt.Errorf("argo-cd is already installed on this cluster in namespace '%s', you need to uninstall it first", subjNamespace)
436
+
returnfmt.Errorf("argo-cd is already installed on this cluster in namespace '%s', you can uninstall it by running '%s runtime uninstall %s --skip-checks --force'", subjNamespace, store.Get().BinaryName, subjNamespace)
cmd.Flags().BoolVar(&skipChecks, "skip-checks", false, "If true, will not verify that runtime exists before uninstalling")
605
611
cmd.Flags().DurationVar(&store.Get().WaitTimeout, "wait-timeout", store.Get().WaitTimeout, "How long to wait for the runtime components to be deleted")
612
+
cmd.Flags().BoolVar(&force, "force", false, "If true, will guarantee the runtime is removed from the platform, even in case of errors while cleaning the repo and the cluster")
613
+
cmd.Flags().BoolVar(&fastExit, "fast-exit", false, "If true, will not wait for deletion of cluster resources. This means that full resource deletion will not be verified")
0 commit comments