Skip to content

Commit fdb1cec

Browse files
committed
Fix default token runes
Signed-off-by: Markus Blaschke <mblaschke82@gmail.com>
1 parent bc84ed2 commit fdb1cec

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

config/opts.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ type (
2626
AuthExtraGroups string `long:"bootstraptoken.auth-extra-groups" env:"BOOTSTRAPTOKEN_AUTH_EXTRA_GROUPS" description:"Auth extra groups for bootstrap tokens" default:"system:bootstrappers:worker,system:bootstrappers:ingress"`
2727
Expiration *time.Duration `long:"bootstraptoken.expiration" env:"BOOTSTRAPTOKEN_EXPIRATION" description:"Expiration (time.Duration) for bootstrap tokens" default:"8760h"`
2828
TokenLength uint `long:"bootstraptoken.token-length" env:"BOOTSTRAPTOKEN_TOKEN_LENGTH" description:"Length of the random token string for bootstrap tokens" default:"16"`
29-
TokenRunes string `long:"bootstraptoken.token-runes" env:"BOOTSTRAPTOKEN_TOKEN_RUNES" description:"Runes which should be used for the random token string for bootstrap tokens" default:"abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"`
29+
TokenRunes string `long:"bootstraptoken.token-runes" env:"BOOTSTRAPTOKEN_TOKEN_RUNES" description:"Runes which should be used for the random token string for bootstrap tokens" default:"abcdefghijklmnopqrstuvwxyz0123456789"`
3030
}
3131

3232
Sync struct {

0 commit comments

Comments
 (0)