如何通过 SSH 连接到 IBM 云上 openshift 集群的工作节点
How to SSH to worker nodes of openshift cluster on IBM cloud
我在 IBM 云上有一个 openshift 集群。我想通过 Putty 使用 SSH 连接到工作节点,但文档说,
SSH by password is unavailable on the worker nodes.
有没有办法连接到那些?
OpenShift 中工作节点的 SSH 访问是 disabled for security reasons. The documentation suggests to use DaemonSets for actions to be performed on worker nodes。
如果您在 IBM 云上使用 OpenShift v4,您可以使用 oc debug node/<target node name>
而不是 SSH 来访问您的工作节点。 oc debug node
命令在目标节点上为终端会话启动一个临时 pod。您可以通过 Pod 像通常的 SSH 会话一样检查和 运行 linux 命令。试试吧。
我在 IBM 云上有一个 openshift 集群。我想通过 Putty 使用 SSH 连接到工作节点,但文档说,
SSH by password is unavailable on the worker nodes.
有没有办法连接到那些?
OpenShift 中工作节点的 SSH 访问是 disabled for security reasons. The documentation suggests to use DaemonSets for actions to be performed on worker nodes。
如果您在 IBM 云上使用 OpenShift v4,您可以使用 oc debug node/<target node name>
而不是 SSH 来访问您的工作节点。 oc debug node
命令在目标节点上为终端会话启动一个临时 pod。您可以通过 Pod 像通常的 SSH 会话一样检查和 运行 linux 命令。试试吧。