Skip to content

Commit 7876d8b

Browse files
author
Ravi Sankar Penta
committed
Use existing kube method to fetch the container ID
Remove unused statusCmd variable.
1 parent 108af8a commit 7876d8b

File tree

2 files changed

+2
-5
lines changed

2 files changed

+2
-5
lines changed

pkg/sdn/plugin/common.go

+2-4
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,12 @@ import (
1414
kapi "k8s.io/kubernetes/pkg/api"
1515
kcache "k8s.io/kubernetes/pkg/client/cache"
1616
"k8s.io/kubernetes/pkg/fields"
17+
kcontainer "k8s.io/kubernetes/pkg/kubelet/container"
1718
)
1819

1920
func getPodContainerID(pod *kapi.Pod) string {
2021
if len(pod.Status.ContainerStatuses) > 0 {
21-
// Extract only container ID, pod.Status.ContainerStatuses[0].ContainerID is of the format: docker://<containerID>
22-
if parts := strings.Split(pod.Status.ContainerStatuses[0].ContainerID, "://"); len(parts) > 1 {
23-
return parts[1]
24-
}
22+
return kcontainer.ParseContainerID(pod.Status.ContainerStatuses[0].ContainerID).ID
2523
}
2624
return ""
2725
}

pkg/sdn/plugin/pod_linux.go

-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,6 @@ const (
3333
sdnScript = "openshift-sdn-ovs"
3434
setUpCmd = "setup"
3535
tearDownCmd = "teardown"
36-
statusCmd = "status"
3736
updateCmd = "update"
3837

3938
AssignMacvlanAnnotation string = "pod.network.openshift.io/assign-macvlan"

0 commit comments

Comments
 (0)