Skip to content

Commit cb84762

Browse files
feat(k8s): add max_etcd_size in ClusterType (#1383)
Co-authored-by: Jules Castéran <[email protected]>
1 parent 293ac79 commit cb84762

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-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
@@ -323,6 +323,7 @@ const unmarshalClusterType = (data: unknown): ClusterType => {
323323
availability: data.availability,
324324
commitmentDelay: data.commitment_delay,
325325
dedicated: data.dedicated,
326+
maxEtcdSize: data.max_etcd_size,
326327
maxNodes: data.max_nodes,
327328
memory: data.memory,
328329
name: data.name,

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

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -466,6 +466,8 @@ export interface ClusterType {
466466
* note that audit logs are sent to Cockpit.
467467
*/
468468
auditLogsSupported: boolean
469+
/** Maximum amount of data that can be stored in etcd for the offer. */
470+
maxEtcdSize: number
469471
}
470472

471473
export interface Version {

0 commit comments

Comments
 (0)