File tree Expand file tree Collapse file tree 1 file changed +7
-1
lines changed Expand file tree Collapse file tree 1 file changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -395,8 +395,14 @@ func (User) VariableSchema() clusterv1.VariableSchema {
395
395
Type : "string" ,
396
396
},
397
397
"hashedPassword" : {
398
- Description : "The hashed password for the user" ,
398
+ Description : "The hashed password for the user. Must be in the format of some hash function supported by the OS. " ,
399
399
Type : "string" ,
400
+ // The crypt (5) man page lists regexes for supported hash
401
+ // functions. We could validate input against a set of
402
+ // regexes, but because the set may be different from the
403
+ // set supported by the chosen OS, we might return a false
404
+ // negative or positive. For this reason, we do not validate
405
+ // the input.
400
406
},
401
407
"sshAuthorizedKeys" : {
402
408
Description : "A list of SSH authorized keys for this user" ,
You can’t perform that action at this time.
0 commit comments