Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions packages/clients/src/api/k8s/v1/marshalling.gen.ts
Original file line number Diff line number Diff line change
Expand Up @@ -220,6 +220,7 @@ export const unmarshalCluster = (data: unknown): Cluster => {
description: data.description,
dnsWildcard: data.dns_wildcard,
featureGates: data.feature_gates,
iamNodesGroupId: data.iam_nodes_group_id,
id: data.id,
name: data.name,
openIdConnectConfig: data.open_id_connect_config
Expand Down
5 changes: 5 additions & 0 deletions packages/clients/src/api/k8s/v1/types.gen.ts
Original file line number Diff line number Diff line change
Expand Up @@ -614,6 +614,11 @@ export interface Cluster {
sbsCsiEnabled?: boolean
/** @deprecated Defines whether ACL is available on the cluster. */
aclAvailable?: boolean
/**
* IAM group that nodes are members of (this field might be empty during early
* stage of cluster creation).
*/
iamNodesGroupId: string
}

export interface Node {
Expand Down
Loading