mirror of
				https://github.com/optim-enterprises-bv/vault.git
				synced 2025-10-31 18:48:08 +00:00 
			
		
		
		
	 6b0c692385
			
		
	
	6b0c692385
	
	
	
		
			
			This endpoint causes the node it's hit to step down from active duty. It's a noop if the node isn't active or not running in HA mode. The node will wait one second before attempting to reacquire the lock, to give other nodes a chance to grab it. Fixes #1093
		
			
				
	
	
		
			55 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			55 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
| package command
 | |
| 
 | |
| import (
 | |
| 	"fmt"
 | |
| 	"strings"
 | |
| )
 | |
| 
 | |
| // StepDownCommand is a Command that seals the vault.
 | |
| type StepDownCommand struct {
 | |
| 	Meta
 | |
| }
 | |
| 
 | |
| func (c *StepDownCommand) Run(args []string) int {
 | |
| 	flags := c.Meta.FlagSet("step-down", FlagSetDefault)
 | |
| 	flags.Usage = func() { c.Ui.Error(c.Help()) }
 | |
| 	if err := flags.Parse(args); err != nil {
 | |
| 		return 1
 | |
| 	}
 | |
| 
 | |
| 	client, err := c.Client()
 | |
| 	if err != nil {
 | |
| 		c.Ui.Error(fmt.Sprintf(
 | |
| 			"Error initializing client: %s", err))
 | |
| 		return 2
 | |
| 	}
 | |
| 
 | |
| 	if err := client.Sys().StepDown(); err != nil {
 | |
| 		c.Ui.Error(fmt.Sprintf("Error stepping down: %s", err))
 | |
| 		return 1
 | |
| 	}
 | |
| 
 | |
| 	return 0
 | |
| }
 | |
| 
 | |
| func (c *StepDownCommand) Synopsis() string {
 | |
| 	return "Force the Vault node to give up active duty"
 | |
| }
 | |
| 
 | |
| func (c *StepDownCommand) Help() string {
 | |
| 	helpText := `
 | |
| Usage: vault step-down [options]
 | |
| 
 | |
|   Force the Vault node to step down from active duty.
 | |
| 
 | |
|   This causes the indicated node to give up active status. Note that while the
 | |
|   affected node will have a short delay before attempting to grab the lock
 | |
|   again, if no other node grabs the lock beforehand, it is possible for the
 | |
|   same node to re-grab the lock and become active again.
 | |
| 
 | |
| General Options:
 | |
| 
 | |
|   ` + generalOptionsUsage()
 | |
| 	return strings.TrimSpace(helpText)
 | |
| }
 |