Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add support for gp3 storage class #510

Open
lukebennett opened this issue Jan 19, 2021 · 2 comments · May be fixed by #885
Open

Add support for gp3 storage class #510

lukebennett opened this issue Jan 19, 2021 · 2 comments · May be fixed by #885
Assignees
Labels
kind/enhancement Improvements or new features

Comments

@lukebennett
Copy link

Are there any plans to support the new gp3 storage class that AWS made available last month? It's currently missing from https://github.com/pulumi/pulumi-eks/blob/master/nodejs/eks/storageclass.ts#L23 and I can't see any other issues about it.

@stack72 stack72 self-assigned this Jan 19, 2021
@stack72 stack72 added this to the 0.51 milestone Jan 19, 2021
stack72 added a commit that referenced this issue Jan 19, 2021
@michael-barker
Copy link

I was looking into this recently and it doesn't seem that the standard provisioner has support for gp3. The EBS CSI driver is necessary to provision gp3 volumes.

aws/containers-roadmap#1187

@stack72 stack72 removed this from the 0.51 milestone Jan 22, 2021
@stack72 stack72 removed their assignment Jan 22, 2021
@stack72 stack72 self-assigned this Feb 16, 2021
@stack72 stack72 added this to the 0.52 milestone Feb 16, 2021
stack72 added a commit that referenced this issue Feb 18, 2021
Fixes: #510

When creating a nodegroup, you can now specify the root volume type:

```
cluster2.createNodeGroup("gp2-storage-type-nodegroup", {
    instanceType: "t2.medium",
    desiredCapacity: 1,
    minSize: 1,
    maxSize: 2,
    labels: {"ondemand": "true"},
    instanceProfile: instanceProfile1,
    nodeRootVolumeType: "gp3",
});
```

and you can specify a cluster storage class of gp3

```
const cluster2 = new eks.Cluster(`${projectName}-2`, {
    storageClasses: {
        "mygp2": {
            type: "gp2",
            default: true,
            encrypted: true,
        },
        "mygp3": {
            type: "gp3",
        }
    },
});

```
stack72 added a commit that referenced this issue Feb 18, 2021
Fixes: #510

When creating a nodegroup, you can now specify the root volume type:

```
cluster2.createNodeGroup("gp2-storage-type-nodegroup", {
    instanceType: "t2.medium",
    desiredCapacity: 1,
    minSize: 1,
    maxSize: 2,
    labels: {"ondemand": "true"},
    instanceProfile: instanceProfile1,
    nodeRootVolumeType: "gp3",
});
```

and you can specify a cluster storage class of gp3

```
const cluster2 = new eks.Cluster(`${projectName}-2`, {
    storageClasses: {
        "mygp2": {
            type: "gp2",
            default: true,
            encrypted: true,
        },
        "mygp3": {
            type: "gp3",
        }
    },
});

```
stack72 added a commit that referenced this issue Feb 18, 2021
Fixes: #510

```
const cluster2 = new eks.Cluster(`${projectName}-2`, {
    storageClasses: {
        "mygp2": {
            type: "gp2",
            default: true,
            encrypted: true,
        },
        "mygp3": {
            type: "gp3",
        }
    },
});

```
@leezen leezen modified the milestones: 0.52, 0.53 Feb 24, 2021
@leezen leezen modified the milestones: 0.53, 0.54 Mar 16, 2021
@stack72 stack72 removed their assignment Nov 5, 2021
@stack72
Copy link
Contributor

stack72 commented Jul 29, 2022

Related to #750

@rquitales rquitales self-assigned this Jun 4, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment