延迟边车(sidecar)Pod的Golang函数

huangapple go评论75阅读模式
英文:

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.

huangapple
  • 本文由 发表于 2022年7月1日 03:12:59
  • 转载请务必保留本文链接:https://go.coder-hub.com/72820941.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定