An open API service indexing awesome lists of open source software.

https://github.com/thesattiraju/cli-tools-docker

CLI tools distributed in docker images
https://github.com/thesattiraju/cli-tools-docker

cli docker kubernetes tools

Last synced: about 2 months ago
JSON representation

CLI tools distributed in docker images

Awesome Lists containing this project

README

          

# CLI Tools Docker based

Docker images with cli tools.

These images are based on alpine and pushed to docker hub registry under `clitools`.

Usage: `docker run clitools/`

Example: `docker run clitools/kubectl get svc`

### Prereq for kubernetes tools

You need to mount your kubeconfig to the container for fetching information from cluster.

Say your kubeconfig is in a directory /home/user/.kube, mount this directory to the container by adding this to your run command `-v /home/user/.kube:/tmp` and set the KUBECONFIG environment variable on the flow.

You need to add `-v /home/user/.kube:/tmp --env KUBECONFIG=/tmp/config` to your docker run commands