Skip to content
Merged
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
15 changes: 12 additions & 3 deletions packages/clients/src/api/k8s/v1/types.gen.ts
Original file line number Diff line number Diff line change
Expand Up @@ -334,7 +334,10 @@ export interface CreateClusterRequestOpenIDConnectConfig {
export interface CreateClusterRequestPoolConfig {
/** The name of the pool */
name: string
/** The node type is the type of Scaleway Instance wanted for the pool */
/**
* The node type is the type of Scaleway Instance wanted for the pool, nodes
* with insufficient memory are not eligible (DEV1-S, PLAY2-PICO, STARDUST)
*/
nodeType: string
/** The placement group ID in which all the nodes of the pool will be created */
placementGroupId?: string
Expand Down Expand Up @@ -493,7 +496,10 @@ export interface Pool {
status: PoolStatus
/** The version of the pool */
version: string
/** The node type is the type of Scaleway Instance wanted for the pool */
/**
* The node type is the type of Scaleway Instance wanted for the pool, nodes
* with insufficient memory are not eligible (DEV1-S, PLAY2-PICO, STARDUST)
*/
nodeType: string
/** The enablement of the autoscaling feature for the pool */
autoscaling: boolean
Expand Down Expand Up @@ -862,7 +868,10 @@ export type CreatePoolRequest = {
clusterId: string
/** The name of the pool */
name?: string
/** The node type is the type of Scaleway Instance wanted for the pool */
/**
* The node type is the type of Scaleway Instance wanted for the pool, nodes
* with insufficient memory are not eligible (DEV1-S, PLAY2-PICO, STARDUST)
*/
nodeType: string
/** The placement group ID in which all the nodes of the pool will be created */
placementGroupId?: string
Expand Down