{"id":24964065,"url":"https://github.com/keidarcy/kubectl-eks-viewer","last_synced_at":"2025-10-11T17:35:21.798Z","repository":{"id":275299055,"uuid":"925683593","full_name":"keidarcy/kubectl-eks-viewer","owner":"keidarcy","description":"A kubectl plugin that provides a convenient way to view AWS EKS cluster resources 🚀","archived":false,"fork":false,"pushed_at":"2025-08-16T10:00:53.000Z","size":43,"stargazers_count":9,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-09-27T17:51:48.308Z","etag":null,"topics":["eks","eksctl","kubectl-plugin","kubectl-plugins"],"latest_commit_sha":null,"homepage":"https://kubectl-eks-viewer.xingyahao.com","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/keidarcy.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2025-02-01T13:40:33.000Z","updated_at":"2025-08-16T10:00:56.000Z","dependencies_parsed_at":null,"dependency_job_id":"114c4b60-0cea-442e-9ac6-a58e7eb078f7","html_url":"https://github.com/keidarcy/kubectl-eks-viewer","commit_stats":null,"previous_names":["keidarcy/kubectl-eks-viewer"],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/keidarcy/kubectl-eks-viewer","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/keidarcy%2Fkubectl-eks-viewer","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/keidarcy%2Fkubectl-eks-viewer/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/keidarcy%2Fkubectl-eks-viewer/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/keidarcy%2Fkubectl-eks-viewer/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/keidarcy","download_url":"https://codeload.github.com/keidarcy/kubectl-eks-viewer/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/keidarcy%2Fkubectl-eks-viewer/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":279008109,"owners_count":26084396,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-10-11T02:00:06.511Z","response_time":55,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["eks","eksctl","kubectl-plugin","kubectl-plugins"],"created_at":"2025-02-03T09:59:45.075Z","updated_at":"2025-10-11T17:35:21.791Z","avatar_url":"https://github.com/keidarcy.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# kubectl-eks-viewer\n\nA kubectl plugin that provides a convenient way to view AWS EKS cluster resources. This plugin allows you to quickly inspect various EKS resources like nodegroups, Fargate profiles, addons, and more, directly from your kubectl environment.\n\nRead more about [Why I created this plugin](https://xingyahao.com/posts/introducing-kubectl-eks-viewer-bridge-the-gap-between-kubectl-and-aws-cli/).\n\n## Features\n\n- Follow kubectl output format\n- View multiple EKS resource types in one command\n- View specific resource types individually\n- Automatic EKS cluster detection from current kubectl context\n- Supported resources:\n  - Access Entries\n  - Addons\n  - Cluster Information\n  - Fargate Profiles\n  - Insights\n  - Nodegroups\n  - Pod Identity Associations\n\n## Prerequisites\n\n- kubectl installed and configured\n- AWS credentials configured with appropriate EKS permissions\n- [Krew](https://krew.sigs.k8s.io/docs/user-guide/setup/install/) (for installing via Krew)\n\n## Installation\n\n### Using Krew (Recommended)\n\nYou can add custom index(since krew only accept vendor plugins that come from the vendors) as shown below and install the plugin from there. To install kubectl-eks-viewer using Krew:\n\n```bash\nkubectl krew index add keidarcy https://github.com/keidarcy/krew-index.git\nkubectl krew install keidarcy/eks-viewer\n```\n\nDetails:\n\n```\n$ kubectl krew index add keidarcy https://github.com/keidarcy/kubectl-eks-viewer.git\nWARNING: You have added a new index from \"https://github.com/keidarcy/kubectl-eks-viewer.git\"\nThe plugins in this index are not audited for security by the Krew maintainers.\nInstall them at your own risk.\n\n$ kubectl krew install  keidarcy/eks-viewer\nUpdated the local copy of plugin index.\nUpdated the local copy of plugin index \"keidarcy\".\nInstalling plugin: eks-viewer\nInstalled plugin: eks-viewer\n\\\n | Use this plugin:\n |      kubectl eks-viewer\n | Documentation:\n |      https://github.com/keidarcy/kubectl-eks-viewer\n/\n\n$ kubectl eks-viewer --help\nView EKS cluster resources.\nWithout arguments, shows all resource types.\nOptionally specify a resource type to show only that type.\n\nValid resource types:\n  - access-entries\n  - addons\n  - cluster\n  - fargate-profiles\n  - insights\n  - nodegroups\n  - pod-identity-associations\n\nUsage:\n  kubectl eks-viewer [resource-type] [flags]\n\nExamples:\n  # List all EKS resources\n  kubectl eks-viewer\n  kubectl eks-viewer -o json\n\n  # List specific resources\n  kubectl eks-viewer addons\n  kubectl eks-viewer -o json nodegroups\n  kubectl eks-viewer nodegroups --output=jsonpath='{.items.nodegroups[*].NodegroupName}\n\n  # Use with a specific context\n  kubectl eks-viewer --context=my-context\n\nFlags:\n      --allow-missing-template-keys    If true, ignore any errors in templates when a field or map key is missing in the template. Only applies to golang and jsonpath output formats. (default true)\n      --as string                      Username to impersonate for the operation. User could be a regular user or a service account in a namespace.\n      --as-group stringArray           Group to impersonate for the operation, this flag can be repeated to specify multiple groups.\n      --as-uid string                  UID to impersonate for the operation.\n      --cache-dir string               Default cache directory (default \"/Users/xyh/.kube/cache\")\n      --certificate-authority string   Path to a cert file for the certificate authority\n      --client-certificate string      Path to a client certificate file for TLS\n      --client-key string              Path to a client key file for TLS\n      --cluster string                 The name of the kubeconfig cluster to use\n      --context string                 The name of the kubeconfig context to use\n      --disable-compression            If true, opt-out of response compression for all requests to the server\n  -h, --help                           help for kubectl\n      --insecure-skip-tls-verify       If true, the server's certificate will not be checked for validity. This will make your HTTPS connections insecure\n      --kubeconfig string              Path to the kubeconfig file to use for CLI requests.\n  -n, --namespace string               If present, the namespace scope for this CLI request\n  -o, --output string                  Output format. One of: (json, yaml, name, go-template, go-template-file, template, templatefile, jsonpath, jsonpath-as-json, jsonpath-file).\n      --request-timeout string         The length of time to wait before giving up on a single server request. Non-zero values should contain a corresponding time unit (e.g. 1s, 2m, 3h). A value of zero means don't timeout requests. (default \"0\")\n  -s, --server string                  The address and port of the Kubernetes API server\n      --show-managed-fields            If true, keep the managedFields when printing objects in JSON or YAML format.\n      --template string                Template string or path to template file to use when -o=go-template, -o=go-template-file. The template format is golang templates [http://golang.org/pkg/text/template/#pkg-overview].\n      --tls-server-name string         Server name to use for server certificate validation. If it is not provided, the hostname used to contact the server is used\n      --token string                   Bearer token for authentication to the API server\n      --user string                    The name of the kubeconfig user to use\n\n$ kubectl eks-viewer\n=== cluster ===\nNAME   VERSION   STATUS   PLATFORM VERSION   AUTH MODE\n\u003cREDACTED\u003e\n\n=== access-entries ===\nACCESS ENTRY PRINCIPAL ARN    KUBERNETES GROUPS    ACCESS POLICIES\n\u003cREDACTED\u003e\n\n=== addons ===\nNAME    VERSION    STATUS   ISSUES\n\u003cREDACTED\u003e\n\n=== nodegroups ===\nNAME      STATUS   INSTANCE TYPE   DESIRED SIZE   MIN SIZE   MAX SIZE   VERSION   AMI TYPE     CAPACITY TYPE\n\u003cREDACTED\u003e\n\n=== fargate-profiles ===\nNAME   SELECTOR NAMESPACE   SELECTOR LABELS   POD EXECUTION ROLE ARN     SUBNETS     STATUS\n\u003cREDACTED\u003e\n\n=== pod-identity-associations ===\nARN    AMESPACE   SERVICE ACCOUNT NAME   IAM ROLE ARN      OWNER ARN\n\u003cREDACTED\u003e\n\n=== insights ===\nNAME       CATEGORY    STATUS\n\u003cREDACTED\u003e\n\n$ kubectl krew upgrade eks-viewer\nUpdated the local copy of plugin index.\nUpdated the local copy of plugin index \"keidarcy\".\nUpgrading plugin: keidarcy/eks-viewer\nUpgraded plugin: keidarcy/eks-viewer\n```\n\n## Usage\n\n```bash\nUsage:\n  kubectl eks-viewer [resource-type] [flags]\n\nExamples:\n  # List all EKS resources\n  kubectl eks-viewer\n  kubectl eks-viewer -o json\n\n  # List specific resources\n  kubectl eks-viewer addons\n  kubectl eks-viewer -o json nodegroups\n  kubectl eks-viewer nodegroups --output=jsonpath='{.items.nodegroups[*].NodegroupName}\n\n  # Use with a specific context\n  kubectl eks-viewer --context=my-context\n```\n\n## Available Resource Types\n\n- `access-entries`: View EKS cluster access entries\n- `addons`: List installed EKS addons\n- `cluster`: Show cluster information\n- `fargate-profiles`: Display Fargate profiles\n- `insights`: View cluster insights\n- `nodegroups`: List managed node groups\n- `pod-identity-associations`: Show pod identity associations\n\n## Feature requests \u0026 bug reports\n\nIf you have any feature requests or bug reports, please submit them through GitHub [Issues](https://github.com/keidarcy/kubectl-eks-viewer/issues).\n\n## Contact \u0026 Author\n\nXing Yahao(https://github.com/keidarcy)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkeidarcy%2Fkubectl-eks-viewer","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fkeidarcy%2Fkubectl-eks-viewer","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkeidarcy%2Fkubectl-eks-viewer/lists"}