This repository was archived by the owner on Apr 11, 2024. It is now read-only.
File tree 1 file changed +6
-5
lines changed
1 file changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -365,20 +365,21 @@ type User struct {
365
365
// Name specifies the user name.
366
366
Name string `json:"name"`
367
367
368
- // HashedPassword specifies a hashed password for the user. See your
369
- // distribution's documentation for instructions to create a hashed
370
- // password.
368
+ // HashedPassword is a hashed password for the user, formatted as described
369
+ // by the crypt(5) man page. See your distribution's documentation for
370
+ // instructions to create a hashed password.
371
371
// An empty string is not marshalled, because it is not a valid value.
372
372
// +optional
373
373
HashedPassword string `json:"hashedPassword,omitempty"`
374
374
375
- // SSHAuthorizedKeys specifies a list of public SSH keys to write to the
375
+ // SSHAuthorizedKeys is a list of public SSH keys to write to the
376
376
// machine. Use the corresponding private SSH keys to authenticate. See SSH
377
377
// documentation for instructions to create a key pair.
378
378
// +optional
379
379
SSHAuthorizedKeys []string `json:"sshAuthorizedKeys,omitempty"`
380
380
381
- // Sudo specifies a sudo role for the user.
381
+ // Sudo is a sudo user specification, formatted as described in the sudo
382
+ // documentation.
382
383
// An empty string is not marshalled, because it is not a valid value.
383
384
// +optional
384
385
Sudo string `json:"sudo,omitempty"`
You can’t perform that action at this time.
0 commit comments