Mercurial > hg > config
annotate bin/kurl.sh @ 824:16200adbd4f0
work around exit code for no changes
author | Jeff Hammel <k0scist@gmail.com> |
---|---|
date | Tue, 07 Feb 2017 10:28:00 -0800 |
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 |