Skip to content

Commit 6f41736

Browse files
committed
Update CLI help menus
1 parent e982651 commit 6f41736

File tree

2 files changed

+13
-13
lines changed

2 files changed

+13
-13
lines changed

cmd/embedded-cluster/install.go

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -577,27 +577,27 @@ var installCommand = &cli.Command{
577577
&cli.StringFlag{
578578
Name: "license",
579579
Aliases: []string{"l"},
580-
Usage: "Path to the application license file",
580+
Usage: "Path to the license file",
581581
Hidden: false,
582582
},
583583
&cli.StringFlag{
584584
Name: "airgap-bundle",
585-
Usage: "Path to the airgap bundle. If set, the installation will be completed without internet access.",
585+
Usage: "Path to the air gap bundle. If set, the installation will complete without internet access.",
586586
Hidden: true,
587587
},
588588
&cli.StringFlag{
589589
Name: "http-proxy",
590-
Usage: "HTTP proxy to use for the installation",
590+
Usage: "Proxy server to use for HTTP",
591591
Hidden: false,
592592
},
593593
&cli.StringFlag{
594594
Name: "https-proxy",
595-
Usage: "HTTPS proxy to use for the installation",
595+
Usage: "Proxy server to use for HTTPS",
596596
Hidden: false,
597597
},
598598
&cli.StringFlag{
599599
Name: "no-proxy",
600-
Usage: "Comma separated list of hosts to bypass the proxy for",
600+
Usage: "Comma-separated list of hosts for which not to use a proxy",
601601
Hidden: false,
602602
},
603603
&cli.BoolFlag{
@@ -607,17 +607,17 @@ var installCommand = &cli.Command{
607607
},
608608
&cli.StringFlag{
609609
Name: "pod-cidr",
610-
Usage: "pod CIDR range to use for the installation",
610+
Usage: "IP address range for pods",
611611
Hidden: false,
612612
},
613613
&cli.StringFlag{
614614
Name: "service-cidr",
615-
Usage: "service CIDR range to use for the installation",
615+
Usage: "IP address range for services",
616616
Hidden: false,
617617
},
618618
&cli.BoolFlag{
619619
Name: "skip-host-preflights",
620-
Usage: "Skip host preflight checks. This is not recommended unless you are sure your system is compatible.",
620+
Usage: "Skip host preflight checks. This is not recommended.",
621621
Value: false,
622622
},
623623
},

cmd/embedded-cluster/restore.go

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -898,22 +898,22 @@ var restoreCommand = &cli.Command{
898898
Flags: []cli.Flag{
899899
&cli.StringFlag{
900900
Name: "airgap-bundle",
901-
Usage: "Path to the airgap bundle. If set, the restore will be completed without internet access.",
901+
Usage: "Path to the air gap bundle. If set, the restore will complete without internet access.",
902902
Hidden: true,
903903
},
904904
&cli.StringFlag{
905905
Name: "http-proxy",
906-
Usage: "HTTP proxy to use for the restore",
906+
Usage: "Proxy server to use for HTTP",
907907
Hidden: false,
908908
},
909909
&cli.StringFlag{
910910
Name: "https-proxy",
911-
Usage: "HTTPS proxy to use for the restore",
911+
Usage: "Proxy server to use for HTTPS",
912912
Hidden: false,
913913
},
914914
&cli.StringFlag{
915915
Name: "no-proxy",
916-
Usage: "Comma separated list of hosts to bypass the proxy for",
916+
Usage: "Comma-separated list of hosts for which not to use a proxy",
917917
Hidden: false,
918918
},
919919
&cli.BoolFlag{
@@ -933,7 +933,7 @@ var restoreCommand = &cli.Command{
933933
},
934934
&cli.BoolFlag{
935935
Name: "skip-host-preflights",
936-
Usage: "Skip host preflight checks. This is not recommended unless you are sure your system is compatible.",
936+
Usage: "Skip host preflight checks. This is not recommended.",
937937
Value: false,
938938
},
939939
},

0 commit comments

Comments
 (0)