Mercurial > hg > config
annotate bin/kurl.sh @ 928:84543f2cda0d default tip
restore my real email that companies keep making me change
author | Jeff Hammel <k0scist@gmail.com> |
---|---|
date | Tue, 14 Oct 2025 14:20:55 -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 |