mirror of
https://github.com/rwxrob/dot
synced 2024-11-16 21:25:29 +00:00
19 lines
277 B
Plaintext
19 lines
277 B
Plaintext
|
#!/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
|
||
|
|