rwxrob-dot/scripts/netshoot

19 lines
277 B
Plaintext
Raw Normal View History

2022-02-09 07:29:05 +00:00
#!/usr/bin/env bash
overrides='
{
"metadata": {
"annotations": {
"sidecar.istio.io/inject": "false"
}
}
}
'
exec kubectl run netshoot --rm -it \
--image nicolaka/netshoot:latest \
--namespace "${1:-$(ns)}" \
--overrides "$overrides" \
-- /bin/bash