Delete a Fargate profile - Amazon EKS
Services or capabilities described in Amazon Web Services documentation might vary by Region. To see the differences applicable to the China Regions, see Getting Started with Amazon Web Services in China (PDF).

Help improve this page

Want to contribute to this user guide? Scroll to the bottom of this page and select Edit this page on GitHub. Your contributions will help make our user guide better for everyone.

Delete a Fargate profile

This topic describes how to delete a Fargate profile. When you delete a Fargate profile, any Pods that were scheduled onto Fargate with the profile are deleted. If those Pods match another Fargate profile, then they're scheduled on Fargate with that profile. If they no longer match any Fargate profiles, then they aren't scheduled onto Fargate and might remain as pending.

Only one Fargate profile in a cluster can be in the DELETING status at a time. Wait for a Fargate profile to finish deleting before you can delete any other profiles in that cluster.

You can delete a profile with eksctl, the Amazon Web Services Management Console, or the Amazon CLI. Select the tab with the name of the tool that you want to use to delete your profile.

eksctl

To delete a Fargate profile with eksctl

Use the following command to delete a profile from a cluster. Replace every example value with your own values.

eksctl delete fargateprofile --name my-profile --cluster my-cluster
Amazon Web Services Management Console
To delete a Fargate profile from a cluster with the Amazon Web Services Management Console
  1. Open the Amazon EKS console at https://console.amazonaws.cn/eks/home#/clusters.

  2. In the left navigation pane, choose Clusters. In the list of clusters, choose the cluster that you want to delete the Fargate profile from.

  3. Choose the Compute tab.

  4. Choose the Fargate profile to delete, and then choose Delete.

  5. On the Delete Fargate profile page, enter the name of the profile, and then choose Delete.

Amazon CLI

To delete a Fargate profile with Amazon CLI

Use the following command to delete a profile from a cluster. Replace every example value with your own values.

aws eks delete-fargate-profile --fargate-profile-name my-profile --cluster-name my-cluster