文件 AWS SDK AWS 範例 SDK 儲存庫中有更多可用的
本文為英文版的機器翻譯版本,如內容有任何歧義或不一致之處,概以英文版為準。
DeleteFargateProfile
搭配 CLI 使用
下列程式碼範例示範如何使用 DeleteFargateProfile
。
- CLI
-
- AWS CLI
-
範例 1:為具有命名空間的選取器建立 EKS Fargate 設定檔
下列
delete-fargate-profile
範例會為具有命名空間的選取器建立 EKS Fargate 設定檔。aws eks delete-fargate-profile \ --cluster-name
my-eks-cluster
\ --fargate-profile-namemy-fargate-profile
輸出:
{ "fargateProfile": { "fargateProfileName": "my-fargate-profile", "fargateProfileArn": "arn:aws:eks:us-east-2:111122223333:fargateprofile/my-eks-cluster/my-fargate-profile/1ac72bb3-3fc6-2631-f1e1-98bff53bed62", "clusterName": "my-eks-cluster", "createdAt": "2024-03-19T11:48:39.975000-04:00", "podExecutionRoleArn": "arn:aws:iam::111122223333:role/role-name", "subnets": [ "subnet-09d912bb63ef21b9a", "subnet-04ad87f71c6e5ab4d", "subnet-0e2907431c9988b72" ], "selectors": [ { "namespace": "default", "labels": { "foo": "bar" } } ], "status": "DELETING", "tags": {} } }
如需詳細資訊,請參閱 Amazon EKS 使用者指南中的 AWS Fargate 設定檔 - 刪除 Fargate。
-
如需 API 詳細資訊,請參閱 AWS CLI 命令參考中的 DeleteFargateProfile
。
-
- PowerShell
-
- for PowerShell 工具
-
範例 1:此 cmdlet 會刪除 AWS Fargate 設定檔。當您刪除 Fargate 設定檔時,任何在 Fargate 上執行,且使用設定檔建立的 Pod 都會遭到刪除。
Remove-EKSFargateProfile -FargateProfileName "EKSFargate" -ClusterName "TEST"
輸出:
Confirm Are you sure you want to perform this action? Performing the operation "Remove-EKSFargateProfile (DeleteFargateProfile)" on target "EKSFargate". [Y] Yes [A] Yes to All [N] No [L] No to All [S] Suspend [?] Help (default is "Y"): Y ClusterName : TEST CreatedAt : 12/26/2019 12:34:47 PM FargateProfileArn : arn:aws:eks:us-east-2:012345678912:fargateprofile/TEST/EKSFargate/42b7a119-e16b-a279-ce97-bdf303adec92 FargateProfileName : EKSFargate PodExecutionRoleArn : arn:aws:iam::012345678912:role/AmazonEKSFargatePodExecutionRole Selectors : {Amazon.EKS.Model.FargateProfileSelector} Status : DELETING Subnets : {subnet-0cd976f08d5fbfaae, subnet-02f6ff500ff2067a0} Tags : {}
-
如需 API 詳細資訊,請參閱 AWS Tools for PowerShell Cmdlet 參考中的 DeleteFargateProfile。
-
DeleteCluster
DeleteNodegroup