{"id":24489975,"url":"https://github.com/realorko/k8s-debugging","last_synced_at":"2026-04-25T18:31:16.138Z","repository":{"id":97399393,"uuid":"369319924","full_name":"RealOrko/k8s-debugging","owner":"RealOrko","description":"A convenient way of debugging a EKS cluster in aws","archived":false,"fork":false,"pushed_at":"2021-05-21T00:36:35.000Z","size":13,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2026-01-01T21:50:17.829Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Shell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/RealOrko.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2021-05-20T19:41:52.000Z","updated_at":"2021-05-21T00:36:37.000Z","dependencies_parsed_at":"2023-03-13T16:14:24.258Z","dependency_job_id":null,"html_url":"https://github.com/RealOrko/k8s-debugging","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/RealOrko/k8s-debugging","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RealOrko%2Fk8s-debugging","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RealOrko%2Fk8s-debugging/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RealOrko%2Fk8s-debugging/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RealOrko%2Fk8s-debugging/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/RealOrko","download_url":"https://codeload.github.com/RealOrko/k8s-debugging/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RealOrko%2Fk8s-debugging/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32273188,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-25T18:29:39.964Z","status":"ssl_error","status_checked_at":"2026-04-25T18:29:32.149Z","response_time":59,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":[],"created_at":"2025-01-21T17:16:41.890Z","updated_at":"2026-04-25T18:31:16.132Z","avatar_url":"https://github.com/RealOrko.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# k8s Debugging\n\nEvery had a problem where you are trying to debug infrastructure from a EKS cluster?\n\nWell this is the answer! :)\n\n## Assumptions\n\nThis repository assumes you are already up and running with k8s, specifically AWS EKS. You already have [kubectl](https://kubernetes.io/docs/tasks/tools/) installed and can connect. \n\n## Pre-requisites\n\nPlease install the following:\n\n  - [direnv](https://direnv.net/docs/installation.html)\n\nRun `direnv allow` in the checkout directory. \n\n## Cloning the repo\n\nTo clone and activate the repo, please run the following:\n\n```\ngit clone git@github.com:RealOrko/k8s-debugging.git \u0026\u0026 cd k8s-debugging \u0026\u0026 direnv allow\n```\n\n## Up and running\n\n  - `kdeploy`: To deploy the diagnostic container in your k8s cluster. \n  - `kdestroy`: To destroy the diagnostic container in your k8s cluster. \n\n\n## SSH into pod\n\nTo SSH into the pod for running diagnostics please run: \n\n  - `kshell`: This will give you a bash shell into the container. \n\n## What's available\n\n  - [dnsutils](https://github.com/RealOrko/k8s-debugging/blob/13e10e09702937aa6b8df38b15a16f3881a0ff4b/Dockerfile#L14)\n    - [https://packages.ubuntu.com/focal/dnsutils](https://packages.ubuntu.com/focal/dnsutils)\n  - [netcat](https://github.com/RealOrko/k8s-debugging/blob/13e10e09702937aa6b8df38b15a16f3881a0ff4b/Dockerfile#L15)\n    - [https://packages.ubuntu.com/focal/netcat](https://packages.ubuntu.com/focal/netcat)\n  - [traceroute](https://github.com/RealOrko/k8s-debugging/blob/13e10e09702937aa6b8df38b15a16f3881a0ff4b/Dockerfile#L16)\n    - [https://packages.ubuntu.com/focal/traceroute](https://packages.ubuntu.com/focal/traceroute)\n  - [curl](https://github.com/RealOrko/k8s-debugging/blob/13e10e09702937aa6b8df38b15a16f3881a0ff4b/Dockerfile#L17)\n    - [https://packages.ubuntu.com/focal/curl](https://packages.ubuntu.com/focal/curl)\n  - [wget](https://github.com/RealOrko/k8s-debugging/blob/13e10e09702937aa6b8df38b15a16f3881a0ff4b/Dockerfile#L18)\n    - [https://packages.ubuntu.com/focal/wget](https://packages.ubuntu.com/focal/wget)\n  - [unzip](https://github.com/RealOrko/k8s-debugging/blob/13e10e09702937aa6b8df38b15a16f3881a0ff4b/Dockerfile#L19)\n    - [https://packages.ubuntu.com/focal/unzip](https://packages.ubuntu.com/focal/unzip)\n  - [nano](https://github.com/RealOrko/k8s-debugging/blob/13e10e09702937aa6b8df38b15a16f3881a0ff4b/Dockerfile#L20)\n    - [https://packages.ubuntu.com/focal/nano](https://packages.ubuntu.com/focal/nano)\n  - [busybox](https://github.com/RealOrko/k8s-debugging/blob/13e10e09702937aa6b8df38b15a16f3881a0ff4b/Dockerfile#L21)\n    - [https://packages.ubuntu.com/focal/busybox](https://packages.ubuntu.com/focal/busybox)\n  - [psmisc](https://github.com/RealOrko/k8s-debugging/blob/13e10e09702937aa6b8df38b15a16f3881a0ff4b/Dockerfile#L22)\n    - [https://packages.ubuntu.com/focal/psmisc](https://packages.ubuntu.com/focal/psmisc)\n  - [lynx](https://github.com/RealOrko/k8s-debugging/blob/13e10e09702937aa6b8df38b15a16f3881a0ff4b/Dockerfile#L29-L32)\n    - [https://packages.ubuntu.com/focal/lynx](https://packages.ubuntu.com/focal/lynx)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frealorko%2Fk8s-debugging","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frealorko%2Fk8s-debugging","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frealorko%2Fk8s-debugging/lists"}