File tree 2 files changed +2
-5
lines changed
2 files changed +2
-5
lines changed Original file line number Diff line number Diff line change @@ -14,14 +14,12 @@ import (
14
14
kapi "k8s.io/kubernetes/pkg/api"
15
15
kcache "k8s.io/kubernetes/pkg/client/cache"
16
16
"k8s.io/kubernetes/pkg/fields"
17
+ kcontainer "k8s.io/kubernetes/pkg/kubelet/container"
17
18
)
18
19
19
20
func getPodContainerID (pod * kapi.Pod ) string {
20
21
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
25
23
}
26
24
return ""
27
25
}
Original file line number Diff line number Diff line change @@ -33,7 +33,6 @@ const (
33
33
sdnScript = "openshift-sdn-ovs"
34
34
setUpCmd = "setup"
35
35
tearDownCmd = "teardown"
36
- statusCmd = "status"
37
36
updateCmd = "update"
38
37
39
38
AssignMacvlanAnnotation string = "pod.network.openshift.io/assign-macvlan"
You can’t perform that action at this time.
0 commit comments