本文整理汇总了Golang中github.com/contiv/netplugin/crt.CRT.GetContainerID方法的典型用法代码示例。如果您正苦于以下问题:Golang CRT.GetContainerID方法的具体用法?Golang CRT.GetContainerID怎么用?Golang CRT.GetContainerID使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类github.com/contiv/netplugin/crt.CRT
的用法示例。
在下文中一共展示了CRT.GetContainerID方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Golang代码示例。
示例1: FetchLLDPInfo
// FetchLLDPInfo reads the lldp information using lldptool
// A native go lib could be done but it requires that lldpad daemon is
// accessible natively on the lldp ipc path
func FetchLLDPInfo(crt *crt.CRT, ifname string) (*LLDPNeighbor, error) {
lldp := &LLDPNeighbor{}
if crt.GetContainerID(lldpadContainerName) == "" {
log.Errorf("Unable to fetch %q container information - please check if it is running", lldpadContainerName)
return nil, core.Errorf("unable to fetch container %s info", lldpadContainerName)
}
cmdWithArgs := []string{"lldptool", "-n", "-t", "-i", ifname}
output, err := crt.ExecContainer(lldpadContainerName, cmdWithArgs...)
if err != nil {
log.Errorf("Error reading lldp information. Error: %s Output: \n%s", err, output)
return nil, err
}
err = parseLLDPArgs(string(output), lldp)
return lldp, err
}