Skip to content
/ wtfd Public

What The Fork Dude - docker image, which was meant for doing quick actions in a k8s cluster

License

Notifications You must be signed in to change notification settings

joelazar/wtfd

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

26 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Build and publish docker image

WTFD - What The Fork Dude

A lightweight bloated docker image, which was meant for doing quick actions in a k8s cluster. I usually use it for doing some investigations, so the name was supposed to reflect that:

Usage with k8s

Start container

kubectl run -it wtfd --image=joelazar/wtfd:latest

Jump back to it

kubectl exec -it wtfd -- fish

Delete it, when it served its purpose

kubectl delete pod wtfd

Usage with docker

Start container

docker run -it --detach --name wtfd joelazar/wtfd:latest

Jump back to it

docker exec -it wtfd fish

Delete it, when it served its purpose

docker rm -fv wtfd

Content

This container is built on latest arch image with an AUR helper (yay), and some extra packages, for example:

For a complete list take a look into the Dockerfile.

And of course you can install other packages with the following command:

sudo -u aur yay -S $PACKAGENAME

This image gets built every day, so the latest tag will always contain the latest available packages.