mirror of
https://github.com/aquasecurity/kube-bench.git
synced 2024-11-22 16:18:07 +00:00
Minor language improvement
This commit is contained in:
parent
432651e85f
commit
c07a8e2c81
@ -22,8 +22,8 @@ import (
|
|||||||
// nodeCmd represents the node command
|
// nodeCmd represents the node command
|
||||||
var federatedCmd = &cobra.Command{
|
var federatedCmd = &cobra.Command{
|
||||||
Use: "federated",
|
Use: "federated",
|
||||||
Short: "Checks for Kubernetes federated deployment.",
|
Short: "Run benchmark checks for a Kubernetes federated deployment.",
|
||||||
Long: `Checks for Kubernetes federated deployment.`,
|
Long: `Run benchmark checks for a Kubernetes federated deployment.`,
|
||||||
Run: func(cmd *cobra.Command, args []string) {
|
Run: func(cmd *cobra.Command, args []string) {
|
||||||
runChecks(check.FEDERATED)
|
runChecks(check.FEDERATED)
|
||||||
},
|
},
|
||||||
|
@ -22,8 +22,8 @@ import (
|
|||||||
// masterCmd represents the master command
|
// masterCmd represents the master command
|
||||||
var masterCmd = &cobra.Command{
|
var masterCmd = &cobra.Command{
|
||||||
Use: "master",
|
Use: "master",
|
||||||
Short: "Checks for Kubernetes master node.",
|
Short: "Run benchmark checks for a Kubernetes master node.",
|
||||||
Long: `Checks for Kubernetes master node.`,
|
Long: `Run benchmark checks for a Kubernetes master node.`,
|
||||||
Run: func(cmd *cobra.Command, args []string) {
|
Run: func(cmd *cobra.Command, args []string) {
|
||||||
runChecks(check.MASTER)
|
runChecks(check.MASTER)
|
||||||
},
|
},
|
||||||
|
@ -22,8 +22,8 @@ import (
|
|||||||
// nodeCmd represents the node command
|
// nodeCmd represents the node command
|
||||||
var nodeCmd = &cobra.Command{
|
var nodeCmd = &cobra.Command{
|
||||||
Use: "node",
|
Use: "node",
|
||||||
Short: "Checks for Kubernetes node.",
|
Short: "Run benchmark checks for a Kubernetes node.",
|
||||||
Long: `Checks for Kubernetes node.`,
|
Long: `Run benchmark checks for a Kubernetes node.`,
|
||||||
Run: func(cmd *cobra.Command, args []string) {
|
Run: func(cmd *cobra.Command, args []string) {
|
||||||
runChecks(check.NODE)
|
runChecks(check.NODE)
|
||||||
},
|
},
|
||||||
|
Loading…
Reference in New Issue
Block a user