自动化容器化的游戏服务器从Github到Google Cloud Run的最佳方法是什么

发布于 2025-02-01 02:38:27 字数 64 浏览 5 评论 0原文

我在GitHub repo中的UDP端口上运行了一个容器化的游戏服务器。我需要在Google Cloud上部署它。

I have a containerized game server running on UDP port in my github repo.I need to deploy it on google cloud.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

假装不在乎 2025-02-08 02:38:27

您不能将UDP应用程序部署到Google Cloud Run。

google cloud run-faq

Cloud Run仅支持HTTP/1.X和1.x和http/2(包括GRPC)。不支持其他基于TCP和UDP的协议。这意味着,您无法运行基于任意TCP的应用程序,也无法在云运行中运行Redis/Memcached Server。

You cannot deploy a UDP application to Google Cloud Run.

Google Cloud Run - FAQ

Cloud Run only supports HTTP/1.x and HTTP/2 (including gRPC) over TLS. Other TCP and UDP based protocols are not supported. This means, you can't run your arbitrary TCP based application, or a Redis/Memcached server on Cloud Run.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文