{"id":28987941,"url":"https://github.com/avisi-cloud/acloud-toolkit","last_synced_at":"2026-01-27T17:05:18.853Z","repository":{"id":300926226,"uuid":"1007089537","full_name":"avisi-cloud/acloud-toolkit","owner":"avisi-cloud","description":"A CLI tool to aid in the automation of common and repetitive Kubernetes tasks","archived":false,"fork":false,"pushed_at":"2026-01-22T08:39:18.000Z","size":735,"stargazers_count":3,"open_issues_count":2,"forks_count":1,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-01-23T02:49:35.324Z","etag":null,"topics":["automation","cli","kubectl","kubernetes"],"latest_commit_sha":null,"homepage":"","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/avisi-cloud.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,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-06-23T12:54:44.000Z","updated_at":"2026-01-22T08:39:20.000Z","dependencies_parsed_at":"2025-11-13T15:02:35.674Z","dependency_job_id":null,"html_url":"https://github.com/avisi-cloud/acloud-toolkit","commit_stats":null,"previous_names":["avisi-cloud/acloud-toolkit"],"tags_count":39,"template":false,"template_full_name":null,"purl":"pkg:github/avisi-cloud/acloud-toolkit","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/avisi-cloud%2Facloud-toolkit","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/avisi-cloud%2Facloud-toolkit/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/avisi-cloud%2Facloud-toolkit/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/avisi-cloud%2Facloud-toolkit/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/avisi-cloud","download_url":"https://codeload.github.com/avisi-cloud/acloud-toolkit/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/avisi-cloud%2Facloud-toolkit/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28816576,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-27T12:25:15.069Z","status":"ssl_error","status_checked_at":"2026-01-27T12:25:05.297Z","response_time":168,"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":["automation","cli","kubectl","kubernetes"],"created_at":"2025-06-24T21:41:48.455Z","updated_at":"2026-01-27T17:05:18.842Z","avatar_url":"https://github.com/avisi-cloud.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# acloud-toolkit\n\n[![Build Status](https://github.com/avisi-cloud/acloud-toolkit/actions/workflows/build.yml/badge.svg)](https://github.com/avisi-cloud/acloud-toolkit/actions)\n[![Go Report Card](https://goreportcard.com/badge/github.com/avisi-cloud/acloud-toolkit)](https://goreportcard.com/report/github.com/avisi-cloud/acloud-toolkit)\n[![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](LICENSE)\n\nOur powerful CLI toolkit for Kubernetes automation and repetitive tasks, specializing in CSI snapshot management, volume migration, and storage.\n\n## ✨ Features\n\n- **Snapshot Management**: Create, restore, import, and list CSI snapshots\n- **Volume Migration**: Migrate volumes between storage classes\n- **Volume Sync**: Synchronize data between persistent volumes\n- **Volume Resize**: Easily resize persistent volumes\n- **Storage Cleanup**: Prune orphaned volumes and snapshots\n\n## 🚀 Quick Start\n\n### Installation\n\n#### From Homebrew (macOS/Linux) (Recommended)\n\n```bash\nbrew install avisi-cloud/tools/acloud-toolkit --cask\n```\n\n#### From Release\n\nDownload the latest release from the [Releases page](https://github.com/avisi-cloud/acloud-toolkit/releases) and extract it. Then copy the binary to the desired location, e.g. `/usr/local/bin`.\n\n#### From Source\n\n```bash\ngit clone https://github.com/avisi-cloud/acloud-toolkit.git\ncd acloud-toolkit\nmake build\nsudo cp bin/acloud-toolkit /usr/local/bin/acloud-toolkit\n```\n\n### Verify Installation\n\n```bash\nacloud-toolkit version\n```\n\n## 📖 Usage Examples\n\n### Snapshot Operations\n\n#### Create a snapshot\n\n```bash\n# Create snapshot from a PVC\nacloud-toolkit snapshot create my-snapshot --pvc my-pvc\n\n# Create snapshots for all PVCs in the namespace \"my-namespace\" with a prefix \"backup\":\nacloud-toolkit snapshot create --all --namespace my-namespace --prefix backup\n```\n\n#### Restore from snapshot\n\n```bash\n# Restore to new PVC\nacloud-toolkit snapshot restore my-snapshot \\\n  --restore-pvc-name my-pvc \\\n  --restore-storage-class ebs-restore\n```\n\n#### Import external snapshots\n\n```bash\n# Import AWS EBS snapshot\nacloud-toolkit snapshot import \\\n  snap-1234567890abcdef0 \\\n  --name my-imported-snapshot\n```\n\n### Storage Management\n\n#### Prune orphaned resources\n\n```bash\nacloud-toolkit volumes prune                    # Preview what will be deleted\nacloud-toolkit volumes prune --dry-run=false    # Execute cleanup\n```\n\n## 🤝 Contributing\n\n### Development Setup\n\n```bash\ngit clone https://github.com/avisi-cloud/acloud-toolkit.git\ncd acloud-toolkit\nmake test\nmake build\n```\n\n### Running Tests\n\n```bash\nmake test          # Unit tests\nmake lint          # Code linting\nmake race          # Race condition detection\n```\n\n### Generate Documentation\n\n```bash\ngo run tools/docs.go\n```\n\n## 📄 License\n\nThis project is licensed under the Apache License 2.0 - see the [LICENSE](LICENSE) file for details.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Favisi-cloud%2Facloud-toolkit","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Favisi-cloud%2Facloud-toolkit","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Favisi-cloud%2Facloud-toolkit/lists"}