From 6f28472d9e3b5b1f59c84dd5aafd3a3d9f49f503 Mon Sep 17 00:00:00 2001 From: Prateek Date: Mon, 1 Jul 2024 03:04:30 +0530 Subject: [PATCH] adding warning Signed-off-by: Prateek --- install/install.go | 1 + 1 file changed, 1 insertion(+) diff --git a/install/install.go b/install/install.go index edd88435..e829f8a3 100644 --- a/install/install.go +++ b/install/install.go @@ -1178,6 +1178,7 @@ func removeAnnotationsFromResource(c *k8s.Client, resource interface{}, resource } func removeAnnotations(c *k8s.Client) { + fmt.Println("Force removing the annotations. Deployments might be restarted.") deployments, err := c.K8sClientset.AppsV1().Deployments("").List(context.Background(), metav1.ListOptions{}) if err != nil { fmt.Printf("Error listing deployments: %v\n", err)