Skip to content

Commit

Permalink
chore(bors): merge pull request #409
Browse files Browse the repository at this point in the history
409: fix(uncordon): Rectify uncordon resource r=sinhaashish a=sinhaashish

<!

Co-authored-by: sinhaashish <[email protected]>
  • Loading branch information
mayastor-bors and sinhaashish committed Jan 29, 2024
2 parents c0e3a2f + 2f5fc82 commit ed949a4
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 ed949a4

Please sign in to comment.