Skip to content

Commit

Permalink
fix(uncordon): Rectify uncordon resource
Browse files Browse the repository at this point in the history
Signed-off-by: sinhaashish <ashi.sinha.87@gmail.com>
  • Loading branch information
sinhaashish committed Jan 29, 2024
1 parent c0e3a2f commit f2b1b7a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions k8s/plugin/src/resources/mod.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
use crate::Error;
use clap::Parser;
use plugin::{
resources::{CordonResources, DrainResources, GetResources, ScaleResources},
resources::{CordonResources, DrainResources, GetResources, ScaleResources, UnCordonResources},
ExecuteOperation,
};
use std::{ops::Deref, path::PathBuf};
Expand Down Expand Up @@ -58,7 +58,7 @@ pub enum Operations {
Cordon(CordonResources),
/// 'Uncordon' resources.
#[clap(subcommand)]
Uncordon(CordonResources),
Uncordon(UnCordonResources),
/// `Dump` resources.
Dump(DumpArgs),
/// `Upgrade` the deployment.
Expand Down

0 comments on commit f2b1b7a

Please sign in to comment.