Skip to content

Commit 6482a07

Browse files
feat(k8s): add migration to SBS CSI (#1387)
Co-authored-by: Jules Castéran <[email protected]>
1 parent ad3dfed commit 6482a07

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

packages/clients/src/api/k8s/v1/marshalling.gen.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -222,6 +222,7 @@ export const unmarshalCluster = (data: unknown): Cluster => {
222222
projectId: data.project_id,
223223
region: data.region,
224224
routedIpEnabled: data.routed_ip_enabled,
225+
sbsCsiEnabled: data.sbs_csi_enabled,
225226
status: data.status,
226227
tags: data.tags,
227228
type: data.type,

packages/clients/src/api/k8s/v1/types.gen.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -549,6 +549,11 @@ export interface Cluster {
549549
* cluster.
550550
*/
551551
routedIpEnabled?: boolean
552+
/**
553+
* @deprecated Defines whether the SBS-enabled CSI starting from v0.3 is
554+
* installed on the cluster.
555+
*/
556+
sbsCsiEnabled?: boolean
552557
}
553558

554559
export interface Node {

0 commit comments

Comments
 (0)