我正在使用 Shelljs 和 sed 命令生成新的 K8S 配置文件
shell.exec(`sed -e s%${server}%${endpoint}%g -e s%${certificate}%${cert}%g config-temp`)
shell.exec("cat config-temp | tee config")
然后我通过运行检查 K8S 集群是否正在工作
kubectl cluster-info
错误消息看起来像
error: Error loading config file "~/.kube/config": yaml: control characters are not allowed
但是,如果我从 中复制所有内容config-temp
,然后将其粘贴到config
, kubectl cluster-info
作品中。
我没有在网上找到相同的错误信息。我只是想知道是否有人遇到过类似的问题。任何帮手