Невозможно выполнить следующую команду Bash / Zsh в Powershell:
$KeyPath = Join-Path -Path $this.Plate -ChildPath "install/tekton.key"
kubectl create secret docker-registry regcred `
--docker-server="https://gcr.io" `
--docker-username=_json_key `
--docker-email="name@org.iam.gserviceaccount.com" `
--docker-password="$(cat $KeyPath)"
Я получаю сообщение об ошибке:
error: exactly one NAME is required, got 5
See 'kubectl create secret docker-registry -h' for help and examples
Если я запускаю эту команду непосредственно в bash it работы:
kubectl create secret docker-registry regcred --docker-server="https://gcr.io" --docker-username=_json_key --docker-email="name@org.iam.gserviceaccount.com" --docker-password="$(cat ./tekton.key)"