Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
byrnedo committed Jul 30, 2024
1 parent c078a74 commit f83c657
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/get.rs
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,8 @@ pub enum GetCommands {
Pod(GetObjectArgs),
#[command(alias("deployments"))]
Deployment(GetObjectArgs),
#[command(alias("daemonsets"))]
Daemonsets(GetObjectArgs),
#[command(alias("nodes"))]
Node(GetObjectArgs),
#[command()]
Expand All @@ -72,6 +74,7 @@ pub async fn get(args: GetArgs) -> Result<(), Box<dyn Error>> {
match args.commands {
GetCommands::Pod(args) => get_pod(global_args, args).await,
GetCommands::Deployment(args) => get_deployment(global_args, args).await,
GetCommands::Daemonsets(args) => todo!(),
GetCommands::Node(args) => get_nodes(global_args, args).await,
GetCommands::Ingress(args) => get_ingress(global_args, args).await,
GetCommands::Cronjob(args) => get_cronjobs(global_args, args).await,
Expand Down

0 comments on commit f83c657

Please sign in to comment.