agent/raft: fix typo in help strings (#9114)
This commit is contained in:
parent
34fab8ae09
commit
ab0bbc595b
|
@ -56,21 +56,21 @@ func (c *OperatorRaftJoinCommand) Flags() *FlagSets {
|
|||
Name: "leader-ca-cert",
|
||||
Target: &c.flagLeaderCACert,
|
||||
Completion: complete.PredictNothing,
|
||||
Usage: "CA cert to communicate with Raft leader.",
|
||||
Usage: "CA cert to use when verifying the Raft leader certificate.",
|
||||
})
|
||||
|
||||
f.StringVar(&StringVar{
|
||||
Name: "leader-client-cert",
|
||||
Target: &c.flagLeaderClientCert,
|
||||
Completion: complete.PredictNothing,
|
||||
Usage: "Client cert to to authenticate to Raft leader.",
|
||||
Usage: "Client cert to use when authenticating with the Raft leader.",
|
||||
})
|
||||
|
||||
f.StringVar(&StringVar{
|
||||
Name: "leader-client-key",
|
||||
Target: &c.flagLeaderClientKey,
|
||||
Completion: complete.PredictNothing,
|
||||
Usage: "Client key to to authenticate to Raft leader.",
|
||||
Usage: "Client key to use when authenticating with the Raft leader.",
|
||||
})
|
||||
|
||||
f.BoolVar(&BoolVar{
|
||||
|
|
Loading…
Reference in New Issue