fix: function can't get tmp fd
Some checks failed
/ deploy (push) Failing after 6s

This commit is contained in:
ange 2025-02-27 02:12:29 +00:00
parent c457cda583
commit cd1888acb6
Signed by: ange
GPG Key ID: 9E0C4157BB7BEB1D

View File

@ -8,11 +8,11 @@ function kapply() {
}; export -f kapply
function kcreatesec() {
kapply <(kubectl create secret generic --dry-run=server -oyaml "$@")
kubectl apply <(kubectl create secret generic --dry-run=server -oyaml "$@")
}; export -f kcreatesec
function kcreatecm() {
kapply <(kubectl create secret configmap --dry-run=server -oyaml "$@")
kubectl apply <(kubectl create configmap --dry-run=server -oyaml "$@")
}; export -f kcreatecm
function kgseckey() {