Mercurial > hg > config
annotate bin/kurl.sh @ 841:d471e0269170
add .cache directory for pytest
author | Jeff Hammel <k0scist@gmail.com> |
---|---|
date | Sat, 13 May 2017 18:35:31 -0700 |
parents | 06f1c3de040c |
children |
rev | line source |
---|---|
814 | 1 #!/bin/bash |
2 | |
3 # run curl within a k8s cluster via kubectl | |
4 | |
815
06f1c3de040c
k8s is picky about how many dashes a deployment may have
Jeff Hammel <k0scist@gmail.com>
parents:
814
diff
changeset
|
5 export KURL_DEPLOYMENT=curl-$(whoami)$(date +%s) |
814 | 6 kubectl run --rm ${KURL_DEPLOYMENT} --image=radial/busyboxplus:curl -i --tty |
7 | |
8 |