{"id":43052850,"url":"https://github.com/cloud-native-toolkit/image-cli-tools","last_synced_at":"2026-01-31T10:38:24.305Z","repository":{"id":37849431,"uuid":"194922712","full_name":"cloud-native-toolkit/image-cli-tools","owner":"cloud-native-toolkit","description":"Container image that provides common tools used in Cloud Native Toolkit infrastructure","archived":false,"fork":false,"pushed_at":"2025-06-05T12:03:24.000Z","size":212,"stargazers_count":2,"open_issues_count":4,"forks_count":6,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-06-22T03:02:56.173Z","etag":null,"topics":["docker","terraform"],"latest_commit_sha":null,"homepage":"https://quay.io/cloudnativetoolkit/cli-tools","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/cloud-native-toolkit.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}},"created_at":"2019-07-02T19:25:32.000Z","updated_at":"2025-06-05T06:37:37.000Z","dependencies_parsed_at":"2025-06-05T07:40:17.085Z","dependency_job_id":null,"html_url":"https://github.com/cloud-native-toolkit/image-cli-tools","commit_stats":null,"previous_names":[],"tags_count":151,"template":false,"template_full_name":null,"purl":"pkg:github/cloud-native-toolkit/image-cli-tools","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloud-native-toolkit%2Fimage-cli-tools","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloud-native-toolkit%2Fimage-cli-tools/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloud-native-toolkit%2Fimage-cli-tools/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloud-native-toolkit%2Fimage-cli-tools/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/cloud-native-toolkit","download_url":"https://codeload.github.com/cloud-native-toolkit/image-cli-tools/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloud-native-toolkit%2Fimage-cli-tools/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28938847,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-31T10:18:23.202Z","status":"ssl_error","status_checked_at":"2026-01-31T10:18:22.693Z","response_time":128,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6: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":["docker","terraform"],"created_at":"2026-01-31T10:38:24.205Z","updated_at":"2026-01-31T10:38:24.299Z","avatar_url":"https://github.com/cloud-native-toolkit.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Cloud-Native Toolkit cli tools\n\n[![Docker Repository on Quay](https://quay.io/repository/cloudnativetoolkit/cli-tools/status \"Docker Repository on Quay\")](https://quay.io/repository/cloudnativetoolkit/cli-tools)\n\nThis repository builds a Docker image whose container is a client for interacting with different cloud providers (IBM Cloud, AWS, Azure).\n\nThe container includes the following tools:\n- terraform cli\n- IBM Cloud cli\n- AWS cli\n- Azure cli\n- bash\n- kubectl cli\n- oc cli\n- git cli\n- perl cli\n- jq cli\n- yq3 cli\n- yq4 cli\n- helm cli\n- terragrunt cli\n\n**Warning: The material contained in this repository has not been thoroughly tested. Proceed with caution.**\n\n## Getting started\n\n### Prerequisites\n\nTo run this image, the following tools are required:\n\n- `docker` cli\n- `docker` backend - Docker Desktop, colima, etc\n\n### Running the client\n\nStart the client to use it.\n\n- To run the `toolkit` container:\n\n    ```bash\n    docker run -itd --name toolkit quay.io/cloudnativetoolkit/cli-tools\n    ```\n\nOnce the client is running in the background, use it by opening a shell in it.\n\n- To use the `toolkit` container, exec shell into it:\n\n    ```bash\n    docker exec -it toolkit /bin/bash\n    ```\n\n    Your terminal is now in the container. \n\nUse this shell to run commands using the installed tools and scripts.\n\nWhen you're finished running commands, to exit the client.\n\n- To leave the `toolkit` container shell, as with any shell:\n\n    ```bash\n    exit\n    ```\n\n    The container will keep running after you exit its shell.\n\nIf the client stops:\n\n- To run the `toolkit` container again:\n\n    ```bash\n    docker start toolkit\n    ```\n\nThe `toolkit` container is just a Docker container, so all [Docker CLI commands](https://docs.docker.com/engine/reference/commandline/cli/) work.\n\n## Development\n\n### Prerequisites\n\nTo use/build this image, the following tools are required:\n\n- `Docker` - kinda obvious, but since we are building, testing and running a Docker image, you need to have\nthe tool available\n- `node/npm` - (optional) used to consolidate the configuration and scripts for working with the image, it\nis **highly** recommended that `npm` is used; however, it is possible to run the scripts directly by looking\nat `package.json` and providing the appropriate values\n\n### Using the image\n\nTo use the image, a local image of the tool is required. You can get the image either by pulling from Docker Hub or \nbuilding locally:\n\n```bash\nnpm run pull\n```\n\n**OR**\n\n```bash\nnpm run build\n```\n\nAfter that, start the image in an interactive terminal with:\n\n```bash\nnpm start\n```\n\n### File Layout\n\n- `package.json` - scripts and config for the image build\n- `Dockerfile` - the docker image definition\n- `config.yaml` - the test config file for the `container-structure-test` tool\n- `scripts/` - directory for shell scripts used by `package.json` scripts to build, test, and \npush the image\n- `src/` - directory containing files that should be included in the built image\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcloud-native-toolkit%2Fimage-cli-tools","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcloud-native-toolkit%2Fimage-cli-tools","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcloud-native-toolkit%2Fimage-cli-tools/lists"}