This is the code that creates the cluster: ```cons...
# typescript
b
This is the code that creates the cluster:
Copy code
const procCluster = new linode.LkeCluster(label(date), {
    k8sVersion: "1.23",
    label: date,
    pools: [{
        count: 3,
        // <https://api.linode.com/v4/linode/types>
        type: "g6-standard-2",
    }],
    region: "us-central",
    tags: ["prod"],
});