Bootstrap FreeKB - Amazon Web Services (AWS) Elastic Kubernetes Service (EKS) - List Add Ons using the AWS CLI
Amazon Web Services (AWS) Elastic Kubernetes Service (EKS) - List Add Ons using the AWS CLI


The aws eks list-clusters command can be used to list your Elastic Kubernetes Service (EKS).

~]$ aws eks list-clusters
{
    "clusters": [
        "my-cluster"
    ]
}

 

And then the aws eks list-addons command can be used to list the Add Ons.

~]$ aws eks list-addons --cluster-name my-cluster
{
    "addons": [
        "my-add-ons"
    ]
}

 

And then the aws eks describe-addon command can be used to show more details about an Add On.

~]$ aws eks describe-addon --cluster my-cluster --addon-name my-add-on
{
    "addon": {
        "addonName": "my-add-on",
        "clusterName": "my-cluster",
        "status": "ACTIVE",
        "addonVersion": "v1.15.1-eksbuild.1",
        "health": {
            "issues": []
        },
        "addonArn": "arn:aws:eks:us-east-1:123456789012:addon/my-cluster/my-add-on/20c5af1a-ceb5-1335-d76f-8443d78d1f87",
        "createdAt": "2023-10-23T15:24:14.166000-05:00",
        "modifiedAt": "2023-10-23T15:26:18.345000-05:00",
        "serviceAccountRoleArn": "arn:aws:iam::123456789012:role/eks/my-role",
        "tags": {
            "Environment": "Development"
        }
    }
}

 




Did you find this article helpful?

If so, consider buying me a coffee over at Buy Me A Coffee



Comments


Add a Comment


Please enter e47260 in the box below so that we can be sure you are a human.