Skip to content

Commit b2e17e0

Browse files
author
datacore-bolt-ci
committed
ci(stability): merge the develop branch
2 parents f3f4bc6 + 47bd842 commit b2e17e0

File tree

2 files changed

+7
-4
lines changed

2 files changed

+7
-4
lines changed

dependencies/control-plane

Submodule control-plane updated 40 files

k8s/plugin/src/resources/mod.rs

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ use openapi::tower::client::Url;
66
use plugin::resources::{snapshot, VolumeId};
77
use plugin::{
88
resources::{
9-
CordonResources, DrainResources, GetResources, LabelResources, ScaleResources,
10-
SetPropertyResources, UnCordonResources,
9+
CordonResources, DrainResources, ExpandResources, GetResources, LabelResources,
10+
ScaleResources, SetPropertyResources, UnCordonResources,
1111
},
1212
rest_wrapper::RestClient,
1313
ExecuteOperation,
@@ -101,6 +101,9 @@ pub enum Operations {
101101
/// 'Get' resources.
102102
#[clap(subcommand)]
103103
Get(GetResourcesK8s),
104+
/// 'Expand' resources.
105+
#[clap(subcommand)]
106+
Expand(ExpandResources),
104107
/// 'Scale' resources.
105108
#[clap(subcommand)]
106109
Scale(ScaleResources),
@@ -165,7 +168,7 @@ impl ExecuteOperation for Operations {
165168
},
166169
Operations::Drain(resource) => resource.execute(cli_args).await?,
167170
Operations::Label(resource) => resource.execute(cli_args).await?,
168-
171+
Operations::Expand(resource) => resource.execute(cli_args).await?,
169172
Operations::Scale(resource) => resource.execute(cli_args).await?,
170173
Operations::Set(resource) => resource.execute(cli_args).await?,
171174
Operations::Cordon(resource) => resource.execute(cli_args).await?,

0 commit comments

Comments
 (0)