published on Tuesday, Mar 24, 2026 by edge-center
published on Tuesday, Mar 24, 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",
nodeCount: 3,
volumeSize: 20,
volumeType: "standard",
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",
node_count=3,
volume_size=20,
volume_type="standard",
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"),
NodeCount: pulumi.Float64(3),
VolumeSize: pulumi.Float64(20),
VolumeType: pulumi.String("standard"),
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",
NodeCount = 3,
VolumeSize = 20,
VolumeType = "standard",
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 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")
.nodeCount(3.0)
.volumeSize(20.0)
.volumeType("standard")
.projectId(1234.0)
.regionId(1234.0)
.build());
}
}
resources:
apps:
type: edgecenter:MkaasPool
properties:
clusterId: 53 # Основные параметры пула
name: apps-pool
flavor: mkaas-worker-g3-cpu-2-2
nodeCount: 3
volumeSize: 20
volumeType: standard
projectId: 1234
regionId: '1234'
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,
node_count: Optional[float] = None,
flavor: Optional[str] = None,
volume_type: Optional[str] = None,
volume_size: Optional[float] = None,
cluster_id: Optional[float] = None,
project_id: Optional[float] = None,
name: Optional[str] = None,
project_name: Optional[str] = None,
region_id: Optional[float] = None,
region_name: Optional[str] = None,
security_group_ids: Optional[Sequence[str]] = 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.
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()
{
NodeCount = 0,
Flavor = "string",
VolumeType = "string",
VolumeSize = 0,
ClusterId = 0,
ProjectId = 0,
Name = "string",
ProjectName = "string",
RegionId = 0,
RegionName = "string",
SecurityGroupIds = new[]
{
"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{
NodeCount: pulumi.Float64(0),
Flavor: pulumi.String("string"),
VolumeType: pulumi.String("string"),
VolumeSize: pulumi.Float64(0),
ClusterId: pulumi.Float64(0),
ProjectId: pulumi.Float64(0),
Name: pulumi.String("string"),
ProjectName: pulumi.String("string"),
RegionId: pulumi.Float64(0),
RegionName: pulumi.String("string"),
SecurityGroupIds: pulumi.StringArray{
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"),
},
})
var mkaasPoolResource = new MkaasPool("mkaasPoolResource", MkaasPoolArgs.builder()
.nodeCount(0.0)
.flavor("string")
.volumeType("string")
.volumeSize(0.0)
.clusterId(0.0)
.projectId(0.0)
.name("string")
.projectName("string")
.regionId(0.0)
.regionName("string")
.securityGroupIds("string")
.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",
node_count=0,
flavor="string",
volume_type="string",
volume_size=0,
cluster_id=0,
project_id=0,
name="string",
project_name="string",
region_id=0,
region_name="string",
security_group_ids=["string"],
timeouts={
"create": "string",
"delete": "string",
"read": "string",
"update": "string",
},
mkaas_pool_id="string",
labels={
"string": "string",
})
const mkaasPoolResource = new edgecenter.MkaasPool("mkaasPoolResource", {
nodeCount: 0,
flavor: "string",
volumeType: "string",
volumeSize: 0,
clusterId: 0,
projectId: 0,
name: "string",
projectName: "string",
regionId: 0,
regionName: "string",
securityGroupIds: ["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
securityGroupIds:
- 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.
- Node
Count double - The current number of nodes in the pool.
- 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.
- 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. - Security
Group List<string>Ids - The list of security group IDs associated with 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.
- Node
Count float64 - The current number of nodes in the pool.
- 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.
- 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. - Security
Group []stringIds - The list of security group IDs associated with the pool.
- Timeouts
Mkaas
Pool Timeouts Args
- 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.
- node
Count Double - The current number of nodes in the pool.
- 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.
- 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. - security
Group List<String>Ids - The list of security group IDs associated with 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.
- node
Count number - The current number of nodes in the pool.
- 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.
- 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. - security
Group string[]Ids - The list of security group IDs associated with 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.
- node_
count float - The current number of nodes in the pool.
- 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.
- 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. - security_
group_ Sequence[str]ids - The list of security group IDs associated with 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.
- node
Count Number - The current number of nodes in the pool.
- 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.
- 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. - security
Group List<String>Ids - The list of security group IDs associated with the pool.
- timeouts Property Map
Outputs
All input properties are implicitly available as output properties. Additionally, the MkaasPool resource produces the following output properties:
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,
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,
security_group_ids: Optional[Sequence[str]] = None,
state: Optional[str] = None,
status: Optional[str] = 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}- 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.
- 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 current 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. - 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.
- 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.
- 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 current 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. - 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.
- 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 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.
- 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 current 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. - 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.
- 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.
- 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 current 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. - 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.
- 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.
- 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 current 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. - 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.
- 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.
- 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 current 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. - 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.
- 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
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, Mar 24, 2026 by edge-center
