Kubernetes - pod 到 pod 通信协议
Kubernetes - pod-to-pod communication protocol
这个关于 pod 到 pod 通信的 基本上说服务将帮助查找实际的 pod 以进行通信。
答案摘录
You need to create a Service to expose the Pod's port and then you just need to use the Service name and kube-dns will resolve the Pod's IP address
我不清楚 pods 之间的 通信协议 是什么。是 HTTP(S) 吗?我可以使用 AMQP 吗? gRPC
?
是TCP/IP中的基本IP。
因此,如果您在 pod 中安装 AMQP,它将使用 kubernetes 提供的 TCP/IP 来解析主机和 IP 等以提供其 AMQP。
如果您设置 tomcat,它将使用基础 TCP/IP 来提供其 HTTP(s)。
我希望它澄清。
这个关于 pod 到 pod 通信的
答案摘录
You need to create a Service to expose the Pod's port and then you just need to use the Service name and kube-dns will resolve the Pod's IP address
我不清楚 pods 之间的 通信协议 是什么。是 HTTP(S) 吗?我可以使用 AMQP 吗? gRPC
?
是TCP/IP中的基本IP。
因此,如果您在 pod 中安装 AMQP,它将使用 kubernetes 提供的 TCP/IP 来解析主机和 IP 等以提供其 AMQP。
如果您设置 tomcat,它将使用基础 TCP/IP 来提供其 HTTP(s)。
我希望它澄清。