英文:
Golang function to delay sidecar pod
问题
我正在尝试通过一个 Golang 函数延迟一个 sidecar 容器。据我所知,Kubernetes 并没有原生的工具来实现这个功能。
所以我只是想在执行处理 sidecar 容器中的一些数据的代码之前,检查主容器是否按预期提供 URL。
这是该函数的代码:
func checkifhostalive() {
seconds := 35
host := "containername"
port := "6062"
timeOut := time.Duration(seconds) * time.Second
_, err := net.DialTimeout("tcp", host+":"+port, timeOut)
if err != nil {
fmt.Println(err)
return
}
}
该容器只在该端口上提供应用程序仪表板。
如果我在 netDialTimeout 中指定 "containername:6062",我是不是正确的?
基本上,我希望在应用程序准备就绪之前,只有余下的代码被执行。所以在余下的代码之前,我放置了这个函数。
我不确定这是否完全正确。该函数返回一个错误,表示主容器拒绝了连接。
也许我更希望有一个更简单的方法,像一个等待容器响应并返回 true 的 ping,这样我就可以在主函数中开始运行余下的代码了。
英文:
I'm trying to delay a sidecar container through a golang function. As far as I know there is no native k8s tool for that.
So I just want to check if the main container is serving the URL as expected before executing the code that process some data in the sidecar container.
This is the function:
func checkifhostalive() {
seconds := 35
host := "containername"
port := "6062"
timeOut := time.Duration(seconds) * time.Second
_, err := net.DialTimeout("tcp", host+":"+port, timeOut)
if err != nil {
fmt.Println(err)
return
}
}
The container just serves an application dashboard on that port.
Am I correct if i specify "containername:6062" for the netDialTimeout?
Basically I want that rest of the code only is executed when the application is ready. So before the rest of the code i placed that function.
I'm not sure if that´s totally correct or not. The function returns an error that the main container refused the connection.
Maybe I would like something more simple like a ping that waits till the container responds and returns a true if responding correctly so I can start running the rest of the code in the main function.
答案1
得分: 1
如果我为netDialTimeout指定"containername:6062",我是正确的吗?
一个Pod中的所有容器共享同一个网络堆栈,因此它们可以通过localhost进行通信。容器名称是不起作用的。
所以,应该使用localhost:6062
。
英文:
> Am I correct if i specify "containername:6062" for the netDialTimeout?
All containers in a pod share the same network stack. So they can communicate via localhost. Container names do not work.
So, use localhost:6062
instead.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论