From ef25c3d55a27e08af03ab1debbfd31ae26089740 Mon Sep 17 00:00:00 2001 From: James Rasell Date: Wed, 14 May 2025 14:53:48 +0100 Subject: [PATCH] cli: Fix help indentation format on node meta commands. (#25851) --- command/node_meta.go | 8 ++++---- command/node_meta_apply.go | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/command/node_meta.go b/command/node_meta.go index 24fab0c03..f2eed9a36 100644 --- a/command/node_meta.go +++ b/command/node_meta.go @@ -17,10 +17,10 @@ func (c *NodeMetaCommand) Help() string { helpText := ` Usage: nomad node meta [subcommand] - Interact with a node's metadata. The apply subcommand allows for dynamically - updating node metadata. The read subcommand allows reading all of the - metadata set on the client. All commands interact directly with a client and - allow setting a custom target with the -node-id option. + Interact with a node's metadata. The apply subcommand allows for dynamically + updating node metadata. The read subcommand allows reading all of the + metadata set on the client. All commands interact directly with a client and + allow setting a custom target with the -node-id option. Please see the individual subcommand help for detailed usage information. ` diff --git a/command/node_meta_apply.go b/command/node_meta_apply.go index 5bf344b19..24af5212b 100644 --- a/command/node_meta_apply.go +++ b/command/node_meta_apply.go @@ -20,8 +20,8 @@ func (c *NodeMetaApplyCommand) Help() string { helpText := ` Usage: nomad node meta apply [-node-id ...] [-unset ...] key1=value1 ... kN=vN - Modify a node's metadata. This command only applies to client agents, and can - be used to update the scheduling metadata the node registers. + Modify a node's metadata. This command only applies to client agents, and can + be used to update the scheduling metadata the node registers. Changes are batched and may take up to 10 seconds to propagate to the servers and affect scheduling.