Canicular Canis Major
The Carina Command Line Client
- Brand new
carina env
command! No more downloading credentials when you already have them. This cuts your time to hero down quite a bit. (#52, #53) Note the poor wifi connection:
$ time eval "$( carina env mycluster )"
real 0m0.028s
user 0m0.004s
sys 0m0.040s
$ time eval "$( carina credentials mycluster )"
real 0m5.047s
user 0m0.046s
sys 0m0.200s
This also matches the docker-machine
semantics better. Yay!
$ eval "$( carina env mycluster )"
$ # instead of
$ eval "$( carina credentials mycluster )"
- If you have
GITHUB_TOKEN
set,carina
will rely on that when checking for updates (#50) carina ls
is a sneaky hidden command that doescarina list
(#48)- Tokens for Carina are now cached in your carina config folder (OS X uses
~/.carina/cache.json
). Turn this off using--no-cache
. This ends up saving about a second on my machine. Your results may vary. (#56)