コード例 #1
0
ファイル: utils.go プロジェクト: ncdc/kubernetes
func BuildContainerName(metadata *runtimeApi.ContainerMetadata) string {
	return fmt.Sprintf("%s_%d", metadata.GetName(), metadata.GetAttempt())
}
コード例 #2
0
ファイル: utils.go プロジェクト: alex-mohr/kubernetes
func BuildContainerName(metadata *runtimeapi.ContainerMetadata, sandboxID string) string {
	// include the sandbox ID to make the container ID unique.
	return fmt.Sprintf("%s_%s_%d", sandboxID, metadata.GetName(), metadata.GetAttempt())
}