1
0
mirror of synced 2026-02-06 19:05:55 +00:00

cmd: start trace short description with T

This fixes a styling issue:

```
$ flux --help

Command line utility for assembling Kubernetes CD pipelines the GitOps
way.

Usage:
  flux [command]

...

Available Commands:
  ...
  suspend     Suspend resources
  trace       trace an in-cluster object throughout the GitOps delivery
pipeline
  uninstall   Uninstall Flux and its custom resource definitions
...
```

Signed-off-by: Hidde Beydals <hello@hidde.co>
This commit is contained in:
Hidde Beydals
2021-11-30 23:27:58 +01:00
parent 3cb748a47e
commit c13de6089a

View File

@@ -40,7 +40,7 @@ import (
var traceCmd = &cobra.Command{ var traceCmd = &cobra.Command{
Use: "trace [name]", Use: "trace [name]",
Short: "trace an in-cluster object throughout the GitOps delivery pipeline", Short: "Trace an in-cluster object throughout the GitOps delivery pipeline",
Long: `The trace command shows how an object is managed by Flux, Long: `The trace command shows how an object is managed by Flux,
from which source and revision it comes, and what's the latest reconciliation status.'`, from which source and revision it comes, and what's the latest reconciliation status.'`,
Example: ` # Trace a Kubernetes Deployment Example: ` # Trace a Kubernetes Deployment