运行gcloud在云构建中运行连接到串行端口的问题

问题描述 投票:0回答:1

我正在使用以下命令从云内部连接到虚拟机的串行端口:

gcloud compute connect-to-serial-port $iam_account@$instance_name"

在本地所有这一切都很好(因为我有一个终端),在云构建中这是行不通的,并给出以下消息:

因为stdin不是终端,所以不会分配伪终端。

[ssh -tt命令是否有可能替代此行为?

google-cloud-platform serial-port google-compute-engine
1个回答
0
投票
尝试使用以下链接[1]配置您的Cloud Build以运行bash脚本并运行您的命令。

[1] https://cloud.google.com/cloud-build/docs/configuring-builds/run-bash-scripts#yaml

© www.soinside.com 2019 - 2024. All rights reserved.