published on Tuesday, Jun 16, 2026 by edge-center
published on Tuesday, Jun 16, 2026 by edge-center
Represent MKaaS cluster’s pool.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as edgecenter from "@pulumi/edgecenter";
const apps = new edgecenter.MkaasPool("apps", {
clusterId: 53,
name: "apps-pool",
flavor: "mkaas-worker-g3-cpu-2-2",
volumeSize: 20,
volumeType: "standard",
taints: [{
key: "dedicated",
value: "gpu",
effect: "NoSchedule",
}],
nodeCount: 3,
projectId: 1234,
regionId: 1234,
});
import pulumi
import pulumi_edgecenter as edgecenter
apps = edgecenter.MkaasPool("apps",
cluster_id=53,
name="apps-pool",
flavor="mkaas-worker-g3-cpu-2-2",
volume_size=20,
volume_type="standard",
taints=[{
"key": "dedicated",
"value": "gpu",
"effect": "NoSchedule",
}],
node_count=3,
project_id=1234,
region_id=1234)
package main
import (
"github.com/pulumi/pulumi-terraform-provider/sdks/go/edgecenter/edgecenter"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := edgecenter.NewMkaasPool(ctx, "apps", &edgecenter.MkaasPoolArgs{
ClusterId: pulumi.Float64(53),
Name: pulumi.String("apps-pool"),
Flavor: pulumi.String("mkaas-worker-g3-cpu-2-2"),
VolumeSize: pulumi.Float64(20),
VolumeType: pulumi.String("standard"),
Taints: edgecenter.MkaasPoolTaintArray{
&edgecenter.MkaasPoolTaintArgs{
Key: pulumi.String("dedicated"),
Value: pulumi.String("gpu"),
Effect: pulumi.String("NoSchedule"),
},
},
NodeCount: pulumi.Float64(3),
ProjectId: pulumi.Float64(1234),
RegionId: pulumi.Float64(1234),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Edgecenter = Pulumi.Edgecenter;
return await Deployment.RunAsync(() =>
{
var apps = new Edgecenter.MkaasPool("apps", new()
{
ClusterId = 53,
Name = "apps-pool",
Flavor = "mkaas-worker-g3-cpu-2-2",
VolumeSize = 20,
VolumeType = "standard",
Taints = new[]
{
new Edgecenter.Inputs.MkaasPoolTaintArgs
{
Key = "dedicated",
Value = "gpu",
Effect = "NoSchedule",
},
},
NodeCount = 3,
ProjectId = 1234,
RegionId = 1234,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.edgecenter.MkaasPool;
import com.pulumi.edgecenter.MkaasPoolArgs;
import com.pulumi.edgecenter.inputs.MkaasPoolTaintArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var apps = new MkaasPool("apps", MkaasPoolArgs.builder()
.clusterId(53.0)
.name("apps-pool")
.flavor("mkaas-worker-g3-cpu-2-2")
.volumeSize(20.0)
.volumeType("standard")
.taints(MkaasPoolTaintArgs.builder()
.key("dedicated")
.value("gpu")
.effect("NoSchedule")
.build())
.nodeCount(3.0)
.projectId(1234.0)
.regionId(1234.0)
.build());
}
}
resources:
apps:
type: edgecenter:MkaasPool
properties:
clusterId: 53 # Core pool parameters
name: apps-pool
flavor: mkaas-worker-g3-cpu-2-2
volumeSize: 20
volumeType: standard
taints:
- key: dedicated
value: gpu
effect: NoSchedule
nodeCount: 3 # The presence of the `auto_scale` block enables the autoscaler; remove the block to disable it.
# # scale_policy {
# # auto_scale {
# # min_node_count = 1
# # max_node_count = 5
# # }
# # }
projectId: 1234
regionId: '1234'
Example coming soon!
Create MkaasPool Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new MkaasPool(name: string, args: MkaasPoolArgs, opts?: CustomResourceOptions);@overload
def MkaasPool(resource_name: str,
args: MkaasPoolArgs,
opts: Optional[ResourceOptions] = None)
@overload
def MkaasPool(resource_name: str,
opts: Optional[ResourceOptions] = None,
cluster_id: Optional[float] = None,
flavor: Optional[str] = None,
volume_type: Optional[str] = None,
volume_size: Optional[float] = None,
region_id: Optional[float] = None,
node_count: Optional[float] = None,
project_id: Optional[float] = None,
project_name: Optional[str] = None,
name: Optional[str] = None,
region_name: Optional[str] = None,
scale_policy: Optional[MkaasPoolScalePolicyArgs] = None,
security_group_ids: Optional[Sequence[str]] = None,
taints: Optional[Sequence[MkaasPoolTaintArgs]] = None,
timeouts: Optional[MkaasPoolTimeoutsArgs] = None,
mkaas_pool_id: Optional[str] = None,
labels: Optional[Mapping[str, str]] = None)func NewMkaasPool(ctx *Context, name string, args MkaasPoolArgs, opts ...ResourceOption) (*MkaasPool, error)public MkaasPool(string name, MkaasPoolArgs args, CustomResourceOptions? opts = null)
public MkaasPool(String name, MkaasPoolArgs args)
public MkaasPool(String name, MkaasPoolArgs args, CustomResourceOptions options)
type: edgecenter:MkaasPool
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
resource "edgecenter_mkaaspool" "name" {
# resource properties
}Parameters
- name string
- The unique name of the resource.
- args MkaasPoolArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args MkaasPoolArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args MkaasPoolArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args MkaasPoolArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args MkaasPoolArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var mkaasPoolResource = new Edgecenter.MkaasPool("mkaasPoolResource", new()
{
ClusterId = 0,
Flavor = "string",
VolumeType = "string",
VolumeSize = 0,
RegionId = 0,
NodeCount = 0,
ProjectId = 0,
ProjectName = "string",
Name = "string",
RegionName = "string",
ScalePolicy = new Edgecenter.Inputs.MkaasPoolScalePolicyArgs
{
AutoScale = new Edgecenter.Inputs.MkaasPoolScalePolicyAutoScaleArgs
{
MaxNodeCount = 0,
MinNodeCount = 0,
},
},
SecurityGroupIds = new[]
{
"string",
},
Taints = new[]
{
new Edgecenter.Inputs.MkaasPoolTaintArgs
{
Effect = "string",
Key = "string",
Value = "string",
},
},
Timeouts = new Edgecenter.Inputs.MkaasPoolTimeoutsArgs
{
Create = "string",
Delete = "string",
Read = "string",
Update = "string",
},
MkaasPoolId = "string",
Labels =
{
{ "string", "string" },
},
});
example, err := edgecenter.NewMkaasPool(ctx, "mkaasPoolResource", &edgecenter.MkaasPoolArgs{
ClusterId: pulumi.Float64(0),
Flavor: pulumi.String("string"),
VolumeType: pulumi.String("string"),
VolumeSize: pulumi.Float64(0),
RegionId: pulumi.Float64(0),
NodeCount: pulumi.Float64(0),
ProjectId: pulumi.Float64(0),
ProjectName: pulumi.String("string"),
Name: pulumi.String("string"),
RegionName: pulumi.String("string"),
ScalePolicy: &edgecenter.MkaasPoolScalePolicyArgs{
AutoScale: &edgecenter.MkaasPoolScalePolicyAutoScaleArgs{
MaxNodeCount: pulumi.Float64(0),
MinNodeCount: pulumi.Float64(0),
},
},
SecurityGroupIds: pulumi.StringArray{
pulumi.String("string"),
},
Taints: edgecenter.MkaasPoolTaintArray{
&edgecenter.MkaasPoolTaintArgs{
Effect: pulumi.String("string"),
Key: pulumi.String("string"),
Value: pulumi.String("string"),
},
},
Timeouts: &edgecenter.MkaasPoolTimeoutsArgs{
Create: pulumi.String("string"),
Delete: pulumi.String("string"),
Read: pulumi.String("string"),
Update: pulumi.String("string"),
},
MkaasPoolId: pulumi.String("string"),
Labels: pulumi.StringMap{
"string": pulumi.String("string"),
},
})
resource "edgecenter_mkaaspool" "mkaasPoolResource" {
cluster_id = 0
flavor = "string"
volume_type = "string"
volume_size = 0
region_id = 0
node_count = 0
project_id = 0
project_name = "string"
name = "string"
region_name = "string"
scale_policy = {
auto_scale = {
max_node_count = 0
min_node_count = 0
}
}
security_group_ids = ["string"]
taints {
effect = "string"
key = "string"
value = "string"
}
timeouts = {
create = "string"
delete = "string"
read = "string"
update = "string"
}
mkaas_pool_id = "string"
labels = {
"string" = "string"
}
}
var mkaasPoolResource = new MkaasPool("mkaasPoolResource", MkaasPoolArgs.builder()
.clusterId(0.0)
.flavor("string")
.volumeType("string")
.volumeSize(0.0)
.regionId(0.0)
.nodeCount(0.0)
.projectId(0.0)
.projectName("string")
.name("string")
.regionName("string")
.scalePolicy(MkaasPoolScalePolicyArgs.builder()
.autoScale(MkaasPoolScalePolicyAutoScaleArgs.builder()
.maxNodeCount(0.0)
.minNodeCount(0.0)
.build())
.build())
.securityGroupIds("string")
.taints(MkaasPoolTaintArgs.builder()
.effect("string")
.key("string")
.value("string")
.build())
.timeouts(MkaasPoolTimeoutsArgs.builder()
.create("string")
.delete("string")
.read("string")
.update("string")
.build())
.mkaasPoolId("string")
.labels(Map.of("string", "string"))
.build());
mkaas_pool_resource = edgecenter.MkaasPool("mkaasPoolResource",
cluster_id=float(0),
flavor="string",
volume_type="string",
volume_size=float(0),
region_id=float(0),
node_count=float(0),
project_id=float(0),
project_name="string",
name="string",
region_name="string",
scale_policy={
"auto_scale": {
"max_node_count": float(0),
"min_node_count": float(0),
},
},
security_group_ids=["string"],
taints=[{
"effect": "string",
"key": "string",
"value": "string",
}],
timeouts={
"create": "string",
"delete": "string",
"read": "string",
"update": "string",
},
mkaas_pool_id="string",
labels={
"string": "string",
})
const mkaasPoolResource = new edgecenter.MkaasPool("mkaasPoolResource", {
clusterId: 0,
flavor: "string",
volumeType: "string",
volumeSize: 0,
regionId: 0,
nodeCount: 0,
projectId: 0,
projectName: "string",
name: "string",
regionName: "string",
scalePolicy: {
autoScale: {
maxNodeCount: 0,
minNodeCount: 0,
},
},
securityGroupIds: ["string"],
taints: [{
effect: "string",
key: "string",
value: "string",
}],
timeouts: {
create: "string",
"delete": "string",
read: "string",
update: "string",
},
mkaasPoolId: "string",
labels: {
string: "string",
},
});
type: edgecenter:MkaasPool
properties:
clusterId: 0
flavor: string
labels:
string: string
mkaasPoolId: string
name: string
nodeCount: 0
projectId: 0
projectName: string
regionId: 0
regionName: string
scalePolicy:
autoScale:
maxNodeCount: 0
minNodeCount: 0
securityGroupIds:
- string
taints:
- effect: string
key: string
value: string
timeouts:
create: string
delete: string
read: string
update: string
volumeSize: 0
volumeType: string
MkaasPool Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The MkaasPool resource accepts the following input properties:
- Cluster
Id double - The id of the Kubernetes cluster this pool belongs to.
- Flavor string
- The identifier of the flavor used for nodes in this pool, e.g. g1-standard-2-4.
- Volume
Size double - The size of the control volumes in the cluster, specified in gigabytes (GB). Allowed range:
20–1024GiB. - Volume
Type string - The type of volume. Available values are
standard,ssd_hiiops. - Labels Dictionary<string, string>
- Arbitrary labels assigned to the pool.
- Mkaas
Pool stringId - The ID of this resource.
- Name string
- The name of the Kubernetes pool.
- Node
Count double - The number of nodes in the pool.
- Project
Id double - The uuid of the project. Either
project_idorproject_namemust be specified. - Project
Name string - The name of the project. Either
project_idorproject_namemust be specified. - Region
Id double - The uuid of the region. Either
region_idorregion_namemust be specified. - Region
Name string - The name of the region. Either
region_idorregion_namemust be specified. - Scale
Policy MkaasPool Scale Policy - Scale policy for the pool. Presence of
auto_scaleenables the Cluster Autoscaler; removing the block disables it. - Security
Group List<string>Ids - The list of security group IDs associated with the pool.
- Taints
List<Mkaas
Pool Taint> - Kubernetes taints applied to all nodes in the pool.
- Timeouts
Mkaas
Pool Timeouts
- Cluster
Id float64 - The id of the Kubernetes cluster this pool belongs to.
- Flavor string
- The identifier of the flavor used for nodes in this pool, e.g. g1-standard-2-4.
- Volume
Size float64 - The size of the control volumes in the cluster, specified in gigabytes (GB). Allowed range:
20–1024GiB. - Volume
Type string - The type of volume. Available values are
standard,ssd_hiiops. - Labels map[string]string
- Arbitrary labels assigned to the pool.
- Mkaas
Pool stringId - The ID of this resource.
- Name string
- The name of the Kubernetes pool.
- Node
Count float64 - The number of nodes in the pool.
- Project
Id float64 - The uuid of the project. Either
project_idorproject_namemust be specified. - Project
Name string - The name of the project. Either
project_idorproject_namemust be specified. - Region
Id float64 - The uuid of the region. Either
region_idorregion_namemust be specified. - Region
Name string - The name of the region. Either
region_idorregion_namemust be specified. - Scale
Policy MkaasPool Scale Policy Args - Scale policy for the pool. Presence of
auto_scaleenables the Cluster Autoscaler; removing the block disables it. - Security
Group []stringIds - The list of security group IDs associated with the pool.
- Taints
[]Mkaas
Pool Taint Args - Kubernetes taints applied to all nodes in the pool.
- Timeouts
Mkaas
Pool Timeouts Args
- cluster_
id number - The id of the Kubernetes cluster this pool belongs to.
- flavor string
- The identifier of the flavor used for nodes in this pool, e.g. g1-standard-2-4.
- volume_
size number - The size of the control volumes in the cluster, specified in gigabytes (GB). Allowed range:
20–1024GiB. - volume_
type string - The type of volume. Available values are
standard,ssd_hiiops. - labels map(string)
- Arbitrary labels assigned to the pool.
- mkaas_
pool_ stringid - The ID of this resource.
- name string
- The name of the Kubernetes pool.
- node_
count number - The number of nodes in the pool.
- project_
id number - The uuid of the project. Either
project_idorproject_namemust be specified. - project_
name string - The name of the project. Either
project_idorproject_namemust be specified. - region_
id number - The uuid of the region. Either
region_idorregion_namemust be specified. - region_
name string - The name of the region. Either
region_idorregion_namemust be specified. - scale_
policy object - Scale policy for the pool. Presence of
auto_scaleenables the Cluster Autoscaler; removing the block disables it. - security_
group_ list(string)ids - The list of security group IDs associated with the pool.
- taints list(object)
- Kubernetes taints applied to all nodes in the pool.
- timeouts object
- cluster
Id Double - The id of the Kubernetes cluster this pool belongs to.
- flavor String
- The identifier of the flavor used for nodes in this pool, e.g. g1-standard-2-4.
- volume
Size Double - The size of the control volumes in the cluster, specified in gigabytes (GB). Allowed range:
20–1024GiB. - volume
Type String - The type of volume. Available values are
standard,ssd_hiiops. - labels Map<String,String>
- Arbitrary labels assigned to the pool.
- mkaas
Pool StringId - The ID of this resource.
- name String
- The name of the Kubernetes pool.
- node
Count Double - The number of nodes in the pool.
- project
Id Double - The uuid of the project. Either
project_idorproject_namemust be specified. - project
Name String - The name of the project. Either
project_idorproject_namemust be specified. - region
Id Double - The uuid of the region. Either
region_idorregion_namemust be specified. - region
Name String - The name of the region. Either
region_idorregion_namemust be specified. - scale
Policy MkaasPool Scale Policy - Scale policy for the pool. Presence of
auto_scaleenables the Cluster Autoscaler; removing the block disables it. - security
Group List<String>Ids - The list of security group IDs associated with the pool.
- taints
List<Mkaas
Pool Taint> - Kubernetes taints applied to all nodes in the pool.
- timeouts
Mkaas
Pool Timeouts
- cluster
Id number - The id of the Kubernetes cluster this pool belongs to.
- flavor string
- The identifier of the flavor used for nodes in this pool, e.g. g1-standard-2-4.
- volume
Size number - The size of the control volumes in the cluster, specified in gigabytes (GB). Allowed range:
20–1024GiB. - volume
Type string - The type of volume. Available values are
standard,ssd_hiiops. - labels {[key: string]: string}
- Arbitrary labels assigned to the pool.
- mkaas
Pool stringId - The ID of this resource.
- name string
- The name of the Kubernetes pool.
- node
Count number - The number of nodes in the pool.
- project
Id number - The uuid of the project. Either
project_idorproject_namemust be specified. - project
Name string - The name of the project. Either
project_idorproject_namemust be specified. - region
Id number - The uuid of the region. Either
region_idorregion_namemust be specified. - region
Name string - The name of the region. Either
region_idorregion_namemust be specified. - scale
Policy MkaasPool Scale Policy - Scale policy for the pool. Presence of
auto_scaleenables the Cluster Autoscaler; removing the block disables it. - security
Group string[]Ids - The list of security group IDs associated with the pool.
- taints
Mkaas
Pool Taint[] - Kubernetes taints applied to all nodes in the pool.
- timeouts
Mkaas
Pool Timeouts
- cluster_
id float - The id of the Kubernetes cluster this pool belongs to.
- flavor str
- The identifier of the flavor used for nodes in this pool, e.g. g1-standard-2-4.
- volume_
size float - The size of the control volumes in the cluster, specified in gigabytes (GB). Allowed range:
20–1024GiB. - volume_
type str - The type of volume. Available values are
standard,ssd_hiiops. - labels Mapping[str, str]
- Arbitrary labels assigned to the pool.
- mkaas_
pool_ strid - The ID of this resource.
- name str
- The name of the Kubernetes pool.
- node_
count float - The number of nodes in the pool.
- project_
id float - The uuid of the project. Either
project_idorproject_namemust be specified. - project_
name str - The name of the project. Either
project_idorproject_namemust be specified. - region_
id float - The uuid of the region. Either
region_idorregion_namemust be specified. - region_
name str - The name of the region. Either
region_idorregion_namemust be specified. - scale_
policy MkaasPool Scale Policy Args - Scale policy for the pool. Presence of
auto_scaleenables the Cluster Autoscaler; removing the block disables it. - security_
group_ Sequence[str]ids - The list of security group IDs associated with the pool.
- taints
Sequence[Mkaas
Pool Taint Args] - Kubernetes taints applied to all nodes in the pool.
- timeouts
Mkaas
Pool Timeouts Args
- cluster
Id Number - The id of the Kubernetes cluster this pool belongs to.
- flavor String
- The identifier of the flavor used for nodes in this pool, e.g. g1-standard-2-4.
- volume
Size Number - The size of the control volumes in the cluster, specified in gigabytes (GB). Allowed range:
20–1024GiB. - volume
Type String - The type of volume. Available values are
standard,ssd_hiiops. - labels Map<String>
- Arbitrary labels assigned to the pool.
- mkaas
Pool StringId - The ID of this resource.
- name String
- The name of the Kubernetes pool.
- node
Count Number - The number of nodes in the pool.
- project
Id Number - The uuid of the project. Either
project_idorproject_namemust be specified. - project
Name String - The name of the project. Either
project_idorproject_namemust be specified. - region
Id Number - The uuid of the region. Either
region_idorregion_namemust be specified. - region
Name String - The name of the region. Either
region_idorregion_namemust be specified. - scale
Policy Property Map - Scale policy for the pool. Presence of
auto_scaleenables the Cluster Autoscaler; removing the block disables it. - security
Group List<String>Ids - The list of security group IDs associated with the pool.
- taints List<Property Map>
- Kubernetes taints applied to all nodes in the pool.
- timeouts Property Map
Outputs
All input properties are implicitly available as output properties. Additionally, the MkaasPool resource produces the following output properties:
- Current
Node doubleCount - The current number of nodes in the pool, reflecting the live value from the API (managed by the autoscaler when enabled).
- Id string
- The provider-assigned unique ID for this managed resource.
- State string
- The state of the pool.
- Status string
- The status of the pool.
- Current
Node float64Count - The current number of nodes in the pool, reflecting the live value from the API (managed by the autoscaler when enabled).
- Id string
- The provider-assigned unique ID for this managed resource.
- State string
- The state of the pool.
- Status string
- The status of the pool.
- current_
node_ numbercount - The current number of nodes in the pool, reflecting the live value from the API (managed by the autoscaler when enabled).
- id string
- The provider-assigned unique ID for this managed resource.
- state string
- The state of the pool.
- status string
- The status of the pool.
- current
Node DoubleCount - The current number of nodes in the pool, reflecting the live value from the API (managed by the autoscaler when enabled).
- id String
- The provider-assigned unique ID for this managed resource.
- state String
- The state of the pool.
- status String
- The status of the pool.
- current
Node numberCount - The current number of nodes in the pool, reflecting the live value from the API (managed by the autoscaler when enabled).
- id string
- The provider-assigned unique ID for this managed resource.
- state string
- The state of the pool.
- status string
- The status of the pool.
- current_
node_ floatcount - The current number of nodes in the pool, reflecting the live value from the API (managed by the autoscaler when enabled).
- id str
- The provider-assigned unique ID for this managed resource.
- state str
- The state of the pool.
- status str
- The status of the pool.
- current
Node NumberCount - The current number of nodes in the pool, reflecting the live value from the API (managed by the autoscaler when enabled).
- id String
- The provider-assigned unique ID for this managed resource.
- state String
- The state of the pool.
- status String
- The status of the pool.
Look up Existing MkaasPool Resource
Get an existing MkaasPool resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: MkaasPoolState, opts?: CustomResourceOptions): MkaasPool@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
cluster_id: Optional[float] = None,
current_node_count: Optional[float] = None,
flavor: Optional[str] = None,
labels: Optional[Mapping[str, str]] = None,
mkaas_pool_id: Optional[str] = None,
name: Optional[str] = None,
node_count: Optional[float] = None,
project_id: Optional[float] = None,
project_name: Optional[str] = None,
region_id: Optional[float] = None,
region_name: Optional[str] = None,
scale_policy: Optional[MkaasPoolScalePolicyArgs] = None,
security_group_ids: Optional[Sequence[str]] = None,
state: Optional[str] = None,
status: Optional[str] = None,
taints: Optional[Sequence[MkaasPoolTaintArgs]] = None,
timeouts: Optional[MkaasPoolTimeoutsArgs] = None,
volume_size: Optional[float] = None,
volume_type: Optional[str] = None) -> MkaasPoolfunc GetMkaasPool(ctx *Context, name string, id IDInput, state *MkaasPoolState, opts ...ResourceOption) (*MkaasPool, error)public static MkaasPool Get(string name, Input<string> id, MkaasPoolState? state, CustomResourceOptions? opts = null)public static MkaasPool get(String name, Output<String> id, MkaasPoolState state, CustomResourceOptions options)resources: _: type: edgecenter:MkaasPool get: id: ${id}import {
to = edgecenter_mkaaspool.example
id = "${id}"
}
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Cluster
Id double - The id of the Kubernetes cluster this pool belongs to.
- Current
Node doubleCount - The current number of nodes in the pool, reflecting the live value from the API (managed by the autoscaler when enabled).
- Flavor string
- The identifier of the flavor used for nodes in this pool, e.g. g1-standard-2-4.
- Labels Dictionary<string, string>
- Arbitrary labels assigned to the pool.
- Mkaas
Pool stringId - The ID of this resource.
- Name string
- The name of the Kubernetes pool.
- Node
Count double - The number of nodes in the pool.
- Project
Id double - The uuid of the project. Either
project_idorproject_namemust be specified. - Project
Name string - The name of the project. Either
project_idorproject_namemust be specified. - Region
Id double - The uuid of the region. Either
region_idorregion_namemust be specified. - Region
Name string - The name of the region. Either
region_idorregion_namemust be specified. - Scale
Policy MkaasPool Scale Policy - Scale policy for the pool. Presence of
auto_scaleenables the Cluster Autoscaler; removing the block disables it. - Security
Group List<string>Ids - The list of security group IDs associated with the pool.
- State string
- The state of the pool.
- Status string
- The status of the pool.
- Taints
List<Mkaas
Pool Taint> - Kubernetes taints applied to all nodes in the pool.
- Timeouts
Mkaas
Pool Timeouts - Volume
Size double - The size of the control volumes in the cluster, specified in gigabytes (GB). Allowed range:
20–1024GiB. - Volume
Type string - The type of volume. Available values are
standard,ssd_hiiops.
- Cluster
Id float64 - The id of the Kubernetes cluster this pool belongs to.
- Current
Node float64Count - The current number of nodes in the pool, reflecting the live value from the API (managed by the autoscaler when enabled).
- Flavor string
- The identifier of the flavor used for nodes in this pool, e.g. g1-standard-2-4.
- Labels map[string]string
- Arbitrary labels assigned to the pool.
- Mkaas
Pool stringId - The ID of this resource.
- Name string
- The name of the Kubernetes pool.
- Node
Count float64 - The number of nodes in the pool.
- Project
Id float64 - The uuid of the project. Either
project_idorproject_namemust be specified. - Project
Name string - The name of the project. Either
project_idorproject_namemust be specified. - Region
Id float64 - The uuid of the region. Either
region_idorregion_namemust be specified. - Region
Name string - The name of the region. Either
region_idorregion_namemust be specified. - Scale
Policy MkaasPool Scale Policy Args - Scale policy for the pool. Presence of
auto_scaleenables the Cluster Autoscaler; removing the block disables it. - Security
Group []stringIds - The list of security group IDs associated with the pool.
- State string
- The state of the pool.
- Status string
- The status of the pool.
- Taints
[]Mkaas
Pool Taint Args - Kubernetes taints applied to all nodes in the pool.
- Timeouts
Mkaas
Pool Timeouts Args - Volume
Size float64 - The size of the control volumes in the cluster, specified in gigabytes (GB). Allowed range:
20–1024GiB. - Volume
Type string - The type of volume. Available values are
standard,ssd_hiiops.
- cluster_
id number - The id of the Kubernetes cluster this pool belongs to.
- current_
node_ numbercount - The current number of nodes in the pool, reflecting the live value from the API (managed by the autoscaler when enabled).
- flavor string
- The identifier of the flavor used for nodes in this pool, e.g. g1-standard-2-4.
- labels map(string)
- Arbitrary labels assigned to the pool.
- mkaas_
pool_ stringid - The ID of this resource.
- name string
- The name of the Kubernetes pool.
- node_
count number - The number of nodes in the pool.
- project_
id number - The uuid of the project. Either
project_idorproject_namemust be specified. - project_
name string - The name of the project. Either
project_idorproject_namemust be specified. - region_
id number - The uuid of the region. Either
region_idorregion_namemust be specified. - region_
name string - The name of the region. Either
region_idorregion_namemust be specified. - scale_
policy object - Scale policy for the pool. Presence of
auto_scaleenables the Cluster Autoscaler; removing the block disables it. - security_
group_ list(string)ids - The list of security group IDs associated with the pool.
- state string
- The state of the pool.
- status string
- The status of the pool.
- taints list(object)
- Kubernetes taints applied to all nodes in the pool.
- timeouts object
- volume_
size number - The size of the control volumes in the cluster, specified in gigabytes (GB). Allowed range:
20–1024GiB. - volume_
type string - The type of volume. Available values are
standard,ssd_hiiops.
- cluster
Id Double - The id of the Kubernetes cluster this pool belongs to.
- current
Node DoubleCount - The current number of nodes in the pool, reflecting the live value from the API (managed by the autoscaler when enabled).
- flavor String
- The identifier of the flavor used for nodes in this pool, e.g. g1-standard-2-4.
- labels Map<String,String>
- Arbitrary labels assigned to the pool.
- mkaas
Pool StringId - The ID of this resource.
- name String
- The name of the Kubernetes pool.
- node
Count Double - The number of nodes in the pool.
- project
Id Double - The uuid of the project. Either
project_idorproject_namemust be specified. - project
Name String - The name of the project. Either
project_idorproject_namemust be specified. - region
Id Double - The uuid of the region. Either
region_idorregion_namemust be specified. - region
Name String - The name of the region. Either
region_idorregion_namemust be specified. - scale
Policy MkaasPool Scale Policy - Scale policy for the pool. Presence of
auto_scaleenables the Cluster Autoscaler; removing the block disables it. - security
Group List<String>Ids - The list of security group IDs associated with the pool.
- state String
- The state of the pool.
- status String
- The status of the pool.
- taints
List<Mkaas
Pool Taint> - Kubernetes taints applied to all nodes in the pool.
- timeouts
Mkaas
Pool Timeouts - volume
Size Double - The size of the control volumes in the cluster, specified in gigabytes (GB). Allowed range:
20–1024GiB. - volume
Type String - The type of volume. Available values are
standard,ssd_hiiops.
- cluster
Id number - The id of the Kubernetes cluster this pool belongs to.
- current
Node numberCount - The current number of nodes in the pool, reflecting the live value from the API (managed by the autoscaler when enabled).
- flavor string
- The identifier of the flavor used for nodes in this pool, e.g. g1-standard-2-4.
- labels {[key: string]: string}
- Arbitrary labels assigned to the pool.
- mkaas
Pool stringId - The ID of this resource.
- name string
- The name of the Kubernetes pool.
- node
Count number - The number of nodes in the pool.
- project
Id number - The uuid of the project. Either
project_idorproject_namemust be specified. - project
Name string - The name of the project. Either
project_idorproject_namemust be specified. - region
Id number - The uuid of the region. Either
region_idorregion_namemust be specified. - region
Name string - The name of the region. Either
region_idorregion_namemust be specified. - scale
Policy MkaasPool Scale Policy - Scale policy for the pool. Presence of
auto_scaleenables the Cluster Autoscaler; removing the block disables it. - security
Group string[]Ids - The list of security group IDs associated with the pool.
- state string
- The state of the pool.
- status string
- The status of the pool.
- taints
Mkaas
Pool Taint[] - Kubernetes taints applied to all nodes in the pool.
- timeouts
Mkaas
Pool Timeouts - volume
Size number - The size of the control volumes in the cluster, specified in gigabytes (GB). Allowed range:
20–1024GiB. - volume
Type string - The type of volume. Available values are
standard,ssd_hiiops.
- cluster_
id float - The id of the Kubernetes cluster this pool belongs to.
- current_
node_ floatcount - The current number of nodes in the pool, reflecting the live value from the API (managed by the autoscaler when enabled).
- flavor str
- The identifier of the flavor used for nodes in this pool, e.g. g1-standard-2-4.
- labels Mapping[str, str]
- Arbitrary labels assigned to the pool.
- mkaas_
pool_ strid - The ID of this resource.
- name str
- The name of the Kubernetes pool.
- node_
count float - The number of nodes in the pool.
- project_
id float - The uuid of the project. Either
project_idorproject_namemust be specified. - project_
name str - The name of the project. Either
project_idorproject_namemust be specified. - region_
id float - The uuid of the region. Either
region_idorregion_namemust be specified. - region_
name str - The name of the region. Either
region_idorregion_namemust be specified. - scale_
policy MkaasPool Scale Policy Args - Scale policy for the pool. Presence of
auto_scaleenables the Cluster Autoscaler; removing the block disables it. - security_
group_ Sequence[str]ids - The list of security group IDs associated with the pool.
- state str
- The state of the pool.
- status str
- The status of the pool.
- taints
Sequence[Mkaas
Pool Taint Args] - Kubernetes taints applied to all nodes in the pool.
- timeouts
Mkaas
Pool Timeouts Args - volume_
size float - The size of the control volumes in the cluster, specified in gigabytes (GB). Allowed range:
20–1024GiB. - volume_
type str - The type of volume. Available values are
standard,ssd_hiiops.
- cluster
Id Number - The id of the Kubernetes cluster this pool belongs to.
- current
Node NumberCount - The current number of nodes in the pool, reflecting the live value from the API (managed by the autoscaler when enabled).
- flavor String
- The identifier of the flavor used for nodes in this pool, e.g. g1-standard-2-4.
- labels Map<String>
- Arbitrary labels assigned to the pool.
- mkaas
Pool StringId - The ID of this resource.
- name String
- The name of the Kubernetes pool.
- node
Count Number - The number of nodes in the pool.
- project
Id Number - The uuid of the project. Either
project_idorproject_namemust be specified. - project
Name String - The name of the project. Either
project_idorproject_namemust be specified. - region
Id Number - The uuid of the region. Either
region_idorregion_namemust be specified. - region
Name String - The name of the region. Either
region_idorregion_namemust be specified. - scale
Policy Property Map - Scale policy for the pool. Presence of
auto_scaleenables the Cluster Autoscaler; removing the block disables it. - security
Group List<String>Ids - The list of security group IDs associated with the pool.
- state String
- The state of the pool.
- status String
- The status of the pool.
- taints List<Property Map>
- Kubernetes taints applied to all nodes in the pool.
- timeouts Property Map
- volume
Size Number - The size of the control volumes in the cluster, specified in gigabytes (GB). Allowed range:
20–1024GiB. - volume
Type String - The type of volume. Available values are
standard,ssd_hiiops.
Supporting Types
MkaasPoolScalePolicy, MkaasPoolScalePolicyArgs
- Auto
Scale MkaasPool Scale Policy Auto Scale - Auto-scaling configuration for the pool.
- Auto
Scale MkaasPool Scale Policy Auto Scale - Auto-scaling configuration for the pool.
- auto_
scale object - Auto-scaling configuration for the pool.
- auto
Scale MkaasPool Scale Policy Auto Scale - Auto-scaling configuration for the pool.
- auto
Scale MkaasPool Scale Policy Auto Scale - Auto-scaling configuration for the pool.
- auto_
scale MkaasPool Scale Policy Auto Scale - Auto-scaling configuration for the pool.
- auto
Scale Property Map - Auto-scaling configuration for the pool.
MkaasPoolScalePolicyAutoScale, MkaasPoolScalePolicyAutoScaleArgs
- Max
Node doubleCount - Maximum number of nodes the autoscaler may scale the pool up to.
- Min
Node doubleCount - Minimum number of nodes the autoscaler may scale the pool down to.
- Max
Node float64Count - Maximum number of nodes the autoscaler may scale the pool up to.
- Min
Node float64Count - Minimum number of nodes the autoscaler may scale the pool down to.
- max_
node_ numbercount - Maximum number of nodes the autoscaler may scale the pool up to.
- min_
node_ numbercount - Minimum number of nodes the autoscaler may scale the pool down to.
- max
Node DoubleCount - Maximum number of nodes the autoscaler may scale the pool up to.
- min
Node DoubleCount - Minimum number of nodes the autoscaler may scale the pool down to.
- max
Node numberCount - Maximum number of nodes the autoscaler may scale the pool up to.
- min
Node numberCount - Minimum number of nodes the autoscaler may scale the pool down to.
- max_
node_ floatcount - Maximum number of nodes the autoscaler may scale the pool up to.
- min_
node_ floatcount - Minimum number of nodes the autoscaler may scale the pool down to.
- max
Node NumberCount - Maximum number of nodes the autoscaler may scale the pool up to.
- min
Node NumberCount - Minimum number of nodes the autoscaler may scale the pool down to.
MkaasPoolTaint, MkaasPoolTaintArgs
MkaasPoolTimeouts, MkaasPoolTimeoutsArgs
Package Details
- Repository
- edgecenter edge-center/terraform-provider-edgecenter
- License
- Notes
- This Pulumi package is based on the
edgecenterTerraform Provider.
published on Tuesday, Jun 16, 2026 by edge-center