Skip to content
Snippets Groups Projects
Commit c07a8e2c authored by Liz Rice's avatar Liz Rice
Browse files

Minor language improvement

parent 432651e8
No related branches found
No related tags found
No related merge requests found
......@@ -22,8 +22,8 @@ import (
// nodeCmd represents the node command
var federatedCmd = &cobra.Command{
Use: "federated",
Short: "Checks for Kubernetes federated deployment.",
Long: `Checks for Kubernetes federated deployment.`,
Short: "Run benchmark checks for a Kubernetes federated deployment.",
Long: `Run benchmark checks for a Kubernetes federated deployment.`,
Run: func(cmd *cobra.Command, args []string) {
runChecks(check.FEDERATED)
},
......
......@@ -22,8 +22,8 @@ import (
// masterCmd represents the master command
var masterCmd = &cobra.Command{
Use: "master",
Short: "Checks for Kubernetes master node.",
Long: `Checks for Kubernetes master node.`,
Short: "Run benchmark checks for a Kubernetes master node.",
Long: `Run benchmark checks for a Kubernetes master node.`,
Run: func(cmd *cobra.Command, args []string) {
runChecks(check.MASTER)
},
......
......@@ -22,8 +22,8 @@ import (
// nodeCmd represents the node command
var nodeCmd = &cobra.Command{
Use: "node",
Short: "Checks for Kubernetes node.",
Long: `Checks for Kubernetes node.`,
Short: "Run benchmark checks for a Kubernetes node.",
Long: `Run benchmark checks for a Kubernetes node.`,
Run: func(cmd *cobra.Command, args []string) {
runChecks(check.NODE)
},
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment