-
-
Notifications
You must be signed in to change notification settings - Fork 153
Expand file tree
/
Copy patheks.go
More file actions
17 lines (13 loc) · 695 Bytes
/
eks.go
File metadata and controls
17 lines (13 loc) · 695 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package eks
import "github.com/spf13/cobra"
// EksCmd executes 'aws eks' CLI commands.
var EksCmd = &cobra.Command{
Use: "eks",
Short: "Run AWS EKS CLI commands for cluster management",
Long: `Manage Amazon EKS clusters using AWS CLI, including configuring kubeconfig and performing cluster-related operations.
You can use this command to interact with AWS EKS, including operations like configuring kubeconfig, managing clusters, and more.
For a list of available AWS EKS commands, refer to the Atmos documentation:
https://atmos.tools/cli/commands/aws/eks-update-kubeconfig`,
FParseErrWhitelist: struct{ UnknownFlags bool }{UnknownFlags: false},
Args: cobra.NoArgs,
}