2017-02-15 21:30:07 +00:00
|
|
|
package command
|
|
|
|
|
|
|
|
import (
|
|
|
|
"flag"
|
|
|
|
"fmt"
|
|
|
|
"strings"
|
|
|
|
|
|
|
|
"github.com/hashicorp/consul/api"
|
|
|
|
"github.com/hashicorp/consul/command/base"
|
|
|
|
)
|
|
|
|
|
|
|
|
type OperatorRaftRemoveCommand struct {
|
|
|
|
base.Command
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *OperatorRaftRemoveCommand) Help() string {
|
|
|
|
helpText := `
|
|
|
|
Usage: consul operator raft remove-peer [options]
|
|
|
|
|
2017-02-16 19:44:14 +00:00
|
|
|
Remove the Consul server with given -address from the Raft configuration.
|
2017-02-15 21:30:07 +00:00
|
|
|
|
|
|
|
There are rare cases where a peer may be left behind in the Raft quorum even
|
|
|
|
though the server is no longer present and known to the cluster. This command
|
|
|
|
can be used to remove the failed server so that it is no longer affects the Raft
|
|
|
|
quorum. If the server still shows in the output of the "consul members" command,
|
|
|
|
it is preferable to clean up by simply running "consul force-leave" instead of
|
|
|
|
this command.
|
|
|
|
|
|
|
|
` + c.Command.Help()
|
|
|
|
|
|
|
|
return strings.TrimSpace(helpText)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *OperatorRaftRemoveCommand) Synopsis() string {
|
|
|
|
return "Remove a Consul server from the Raft configuration"
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *OperatorRaftRemoveCommand) Run(args []string) int {
|
|
|
|
f := c.Command.NewFlagSet(c)
|
|
|
|
|
2017-03-30 01:09:41 +00:00
|
|
|
var address, id string
|
2017-02-15 21:30:07 +00:00
|
|
|
f.StringVar(&address, "address", "",
|
|
|
|
"The address to remove from the Raft configuration.")
|
2017-03-30 01:09:41 +00:00
|
|
|
f.StringVar(&id, "id", "",
|
|
|
|
"The ID to remove from the Raft configuration.")
|
2017-02-15 21:30:07 +00:00
|
|
|
|
|
|
|
if err := c.Command.Parse(args); err != nil {
|
|
|
|
if err == flag.ErrHelp {
|
|
|
|
return 0
|
|
|
|
}
|
2017-04-21 00:02:42 +00:00
|
|
|
c.UI.Error(fmt.Sprintf("Failed to parse args: %v", err))
|
2017-02-15 21:30:07 +00:00
|
|
|
return 1
|
|
|
|
}
|
|
|
|
|
|
|
|
// Set up a client.
|
|
|
|
client, err := c.Command.HTTPClient()
|
|
|
|
if err != nil {
|
2017-04-21 00:02:42 +00:00
|
|
|
c.UI.Error(fmt.Sprintf("Error initializing client: %s", err))
|
2017-02-15 21:30:07 +00:00
|
|
|
return 1
|
|
|
|
}
|
|
|
|
|
|
|
|
// Fetch the current configuration.
|
2017-03-30 01:09:41 +00:00
|
|
|
if err := raftRemovePeers(address, id, client.Operator()); err != nil {
|
2017-04-21 00:02:42 +00:00
|
|
|
c.UI.Error(fmt.Sprintf("Error removing peer: %v", err))
|
2017-02-15 21:30:07 +00:00
|
|
|
return 1
|
|
|
|
}
|
2017-03-30 01:09:41 +00:00
|
|
|
if address != "" {
|
2017-04-21 00:02:42 +00:00
|
|
|
c.UI.Output(fmt.Sprintf("Removed peer with address %q", address))
|
2017-03-30 01:09:41 +00:00
|
|
|
} else {
|
2017-04-21 00:02:42 +00:00
|
|
|
c.UI.Output(fmt.Sprintf("Removed peer with id %q", id))
|
2017-03-30 01:09:41 +00:00
|
|
|
}
|
2017-02-15 21:30:07 +00:00
|
|
|
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
2017-03-30 01:09:41 +00:00
|
|
|
func raftRemovePeers(address, id string, operator *api.Operator) error {
|
|
|
|
if len(address) == 0 && len(id) == 0 {
|
|
|
|
return fmt.Errorf("an address or id is required for the peer to remove")
|
|
|
|
}
|
|
|
|
if len(address) > 0 && len(id) > 0 {
|
|
|
|
return fmt.Errorf("cannot give both an address and id")
|
2017-02-15 21:30:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Try to kick the peer.
|
2017-03-30 01:09:41 +00:00
|
|
|
if len(address) > 0 {
|
|
|
|
if err := operator.RaftRemovePeerByAddress(address, nil); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if err := operator.RaftRemovePeerByID(id, nil); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2017-02-15 21:30:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|