mirror of
https://github.com/dredx/prole.git
synced 2026-09-24 19:24:32 +00:00
11 lines
222 B
Bash
11 lines
222 B
Bash
#!/usr/bin/env bash
|
|
|
|
knoe_kubectl_exec_cmd() {
|
|
local ns="$1"
|
|
local pod="$2"
|
|
local cmd="$3"
|
|
|
|
# Print a deterministic, shell-escaped command string.
|
|
printf 'kubectl -n %q exec %q -- sh -c %q' "$ns" "$pod" "$cmd"
|
|
}
|