diff --git a/controller/controller.go b/controller/controller.go
index 8856925345f8833583c38413da795820fbed2fed..93cd300d09e1143a9d9acdc2f135618a142a8802 100644
--- a/controller/controller.go
+++ b/controller/controller.go
@@ -228,7 +228,7 @@ func ensureDefaultUserExists() error {
 	}
 
 	if adminUser == nil {
-		// Generate a password that is 64 characters long with 10 digits, 10 symbols,
+		// Generate a password that is 16 characters long with 3 digits, 0 symbols,
 		// allowing upper and lower case letters, disallowing repeat characters.
 		generatedPassword, err := password.Generate(16, 3, 0, true, false)
 		if err != nil {