Luke Wahlmeier
Luke Wahlmeier
Added CLI ability because I wanted to run this from cron w/o using a web server. I also cleaned up some of the methods that where taking parameters they already...
Currently the DBWorker is limited by the number of cores on the host machine: ```golang if worker > runtime.NumCPU() { worker = runtime.NumCPU() } ``` A DB Connection pool is...
stim kube config can end up with a lot of clusters in the list esp when working with lots of clusters. It would be nice to be able to add...
It would be nice to have stim be able to automatically setup/download common utilities for different environments. Since not all environments are the same it would be nice to have...
Is there anyway to atomicly set a value if one does not already exist? I have tried a couple different things and they don't seem to work for my use...