https://github.com/alexsjones/kubetools
A docker image with useful things I work with every day.
https://github.com/alexsjones/kubetools
docker helm kubernetes kubernetes-cli linkerd
Last synced: about 2 months ago
JSON representation
A docker image with useful things I work with every day.
- Host: GitHub
- URL: https://github.com/alexsjones/kubetools
- Owner: AlexsJones
- Created: 2020-02-08T12:34:32.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2020-03-25T13:29:21.000Z (over 6 years ago)
- Last Synced: 2025-04-08T15:27:05.285Z (about 1 year ago)
- Topics: docker, helm, kubernetes, kubernetes-cli, linkerd
- Language: Dockerfile
- Size: 2.93 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# kubetools
Useful tools I end up using day in and out.
_Install kubernetes on docker_
```
docker run -v /var/run/docker.sock:/var/run/docker.sock -v ${HOME}/.kube:/root/.kube -v ${PWD}:/config tibbar/kubetools:0.0.1 kind create cluster;kind export kubeconfig
```
_Install a helm chart_
```
docker run -v /var/run/docker.sock:/var/run/docker.sock -v ${HOME}/.kube:/root/.kube -v ${PWD}:/config tibbar/kubetools:0.0.1 helm install stable/nginx --generate-name
```
_Install linkerd_
```
docker run -v /var/run/docker.sock:/var/run/docker.sock -v ${HOME}/.kube:/root/.kube -v ${PWD}:/config tibbar/kubetools:0.0.1 linkerd install | kubectl apply -f -
```
## Versions
| Tool | Version |
|---------|---------|
| Kubectl | 1.17.0 |
| Helm | 3.0.2 |
| Kind | 0.7.0 |
| Linkerd | Latest |