{"id":44018478,"url":"https://github.com/perun-engineering/aws-helm-kubectl","last_synced_at":"2026-02-11T00:05:22.447Z","repository":{"id":310584833,"uuid":"1016342914","full_name":"Perun-Engineering/aws-helm-kubectl","owner":"Perun-Engineering","description":"Multi-architecture Docker image containing AWS CLI, Helm, Kubectl, and other commonly used Kubernetes tools","archived":false,"fork":false,"pushed_at":"2025-12-10T11:16:11.000Z","size":112,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-12-10T15:45:25.263Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Makefile","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/Perun-Engineering.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","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,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-07-08T21:38:42.000Z","updated_at":"2025-12-10T11:16:11.000Z","dependencies_parsed_at":"2025-08-19T03:23:05.122Z","dependency_job_id":"33296e62-90d9-4f19-befb-8fd25edb5f65","html_url":"https://github.com/Perun-Engineering/aws-helm-kubectl","commit_stats":null,"previous_names":["perun-engineering/aws-helm-kubectl"],"tags_count":13,"template":false,"template_full_name":null,"purl":"pkg:github/Perun-Engineering/aws-helm-kubectl","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Perun-Engineering%2Faws-helm-kubectl","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Perun-Engineering%2Faws-helm-kubectl/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Perun-Engineering%2Faws-helm-kubectl/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Perun-Engineering%2Faws-helm-kubectl/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Perun-Engineering","download_url":"https://codeload.github.com/Perun-Engineering/aws-helm-kubectl/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Perun-Engineering%2Faws-helm-kubectl/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29199519,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-07T14:35:27.868Z","status":"ssl_error","status_checked_at":"2026-02-07T14:25:51.081Z","response_time":63,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: 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":"2026-02-07T16:04:34.405Z","updated_at":"2026-02-07T16:04:47.413Z","avatar_url":"https://github.com/Perun-Engineering.png","language":"Makefile","funding_links":[],"categories":[],"sub_categories":[],"readme":"# AWS Helm Kubectl Docker Image\n\nMulti-architecture Docker image containing AWS CLI, Helm, Kubectl, and other commonly used Kubernetes tools.\n\n## Supported Architectures\n\n- `linux/amd64`\n- `linux/arm64`\n\n## Available Tags (Kubectl Versions)\n\n- `1.32.11`\n- `1.33.7`\n- `1.34.3`\n- `1.35.0`\n\n## Components Versions\n\nAll current images include the following tools:\n\n| Component | Version |\n|-----------|---------|\n| Alpine | 3.23.2 |\n| Helm | 4.1.0 |\n| AWS CLI | 2.33.6 |\n| SOPS | 3.11.0 |\n| Helm Secrets Plugin | 4.7.5 |\n| Helm S3 Plugin | 0.17.1 |\n| Helm Diff Plugin | 3.14.1 |\n| Helmfile | 1.2.3 |\n\n## Usage\n\nPull the specific kubectl version you need:\n```bash\ndocker pull sirantd/aws-helm-kubectl:1.35.0\n```\n\nOr from GitHub Container Registry:\n```bash\ndocker pull ghcr.io/perun-engineering/aws-helm-kubectl:1.35.0\n```\n\n## Examples\n\n### Basic Usage\n```bash\n# Run with AWS credentials from environment\ndocker run --rm -it \\\n  -e AWS_ACCESS_KEY_ID \\\n  -e AWS_SECRET_ACCESS_KEY \\\n  -e AWS_DEFAULT_REGION \\\n  sirantd/aws-helm-kubectl:1.35.0 \\\n  kubectl get nodes\n```\n\n### Mount kubeconfig\n```bash\n# Mount your kubeconfig file\ndocker run --rm -it \\\n  -v ~/.kube:/home/appuser/.kube:ro \\\n  sirantd/aws-helm-kubectl:1.35.0 \\\n  kubectl get pods\n```\n\n### Interactive Shell\n```bash\n# Start an interactive shell\ndocker run --rm -it \\\n  -v $(pwd):/workspace \\\n  sirantd/aws-helm-kubectl:1.35.0 \\\n  /bin/bash\n```\n\n## Security\n\nThis image runs as a non-root user (`appuser`) for enhanced security. The working directory is `/config` and is owned by the `appuser`.\n\n## Health Check\n\nThe image includes a health check that verifies all tools are working correctly:\n- kubectl version check\n- helm version check\n- aws version check\n\n## Building Locally\n\n```bash\n# Build for specific Kubernetes version\nmake docker_build KUBE_VERSION=1.33.2\n\n# Build for all supported versions\nmake docker_build_all\n\n# Test the built image\nmake docker_test KUBE_VERSION=1.33.2\n\n# Run security scan\nmake security_scan KUBE_VERSION=1.33.2\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fperun-engineering%2Faws-helm-kubectl","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fperun-engineering%2Faws-helm-kubectl","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fperun-engineering%2Faws-helm-kubectl/lists"}