chore(install): Improve install command message when global option is set
diff --git a/pkg/cmd/install.go b/pkg/cmd/install.go
index 65f65c3..77569e5 100644
--- a/pkg/cmd/install.go
+++ b/pkg/cmd/install.go
@@ -269,7 +269,11 @@
 				}
 			}
 
-			fmt.Println("Camel K installed in namespace", namespace)
+			if o.global {
+				fmt.Println("Camel K installed in namespace", namespace, "(global mode)")
+			} else {
+				fmt.Println("Camel K installed in namespace", namespace)
+			}
 		}
 	}