Skip to content

Commit 607caee

Browse files
Merge pull request #17841 from bparees/crio
remove dependency on crio constant for socket path
2 parents 5643835 + 65e3939 commit 607caee

File tree

4 files changed

+5
-12
lines changed

4 files changed

+5
-12
lines changed

pkg/build/builder/util_linux.go

+1-2
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ import (
88
"os"
99
"strconv"
1010

11-
"github.com/google/cadvisor/container/crio"
1211
crioclient "github.com/kubernetes-incubator/cri-o/client"
1312
"github.com/kubernetes-incubator/cri-o/pkg/annotations"
1413
"github.com/opencontainers/runc/libcontainer/cgroups"
@@ -32,7 +31,7 @@ func getContainerNetworkConfig() (string, string, error) {
3231
return s2iapi.DockerNetworkModeContainerPrefix + id, "", nil
3332
}
3433

35-
crioClient, err := crioclient.New(crio.CrioSocket)
34+
crioClient, err := crioclient.New("/var/run/crio/crio.sock")
3635
if err != nil {
3736
return "", "", err
3837
}

pkg/build/controller/strategy/docker_test.go

+1-3
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,6 @@ import (
55
"strings"
66
"testing"
77

8-
"github.com/google/cadvisor/container/crio"
9-
108
"k8s.io/api/core/v1"
119
"k8s.io/apimachinery/pkg/api/resource"
1210
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
@@ -73,7 +71,7 @@ func TestDockerCreateBuildPod(t *testing.T) {
7371
if *actual.Spec.ActiveDeadlineSeconds != 60 {
7472
t.Errorf("Expected ActiveDeadlineSeconds 60, got %d", *actual.Spec.ActiveDeadlineSeconds)
7573
}
76-
for i, expected := range []string{buildutil.BuildWorkDirMount, dockerSocketPath, crio.CrioSocket, DockerPushSecretMountPath, DockerPullSecretMountPath} {
74+
for i, expected := range []string{buildutil.BuildWorkDirMount, dockerSocketPath, "/var/run/crio/crio.sock", DockerPushSecretMountPath, DockerPullSecretMountPath} {
7775
if container.VolumeMounts[i].MountPath != expected {
7876
t.Fatalf("Expected %s in VolumeMount[%d], got %s", expected, i, container.VolumeMounts[i].MountPath)
7977
}

pkg/build/controller/strategy/sti_test.go

+1-3
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,6 @@ import (
55
"strings"
66
"testing"
77

8-
"github.com/google/cadvisor/container/crio"
9-
108
"k8s.io/api/core/v1"
119
"k8s.io/apimachinery/pkg/api/resource"
1210
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
@@ -109,7 +107,7 @@ func testSTICreateBuildPod(t *testing.T, rootAllowed bool) {
109107
if len(container.VolumeMounts) != 5 {
110108
t.Fatalf("Expected 5 volumes in container, got %d", len(container.VolumeMounts))
111109
}
112-
for i, expected := range []string{buildutil.BuildWorkDirMount, dockerSocketPath, crio.CrioSocket, DockerPushSecretMountPath, DockerPullSecretMountPath} {
110+
for i, expected := range []string{buildutil.BuildWorkDirMount, dockerSocketPath, "/var/run/crio/crio.sock", DockerPushSecretMountPath, DockerPullSecretMountPath} {
113111
if container.VolumeMounts[i].MountPath != expected {
114112
t.Fatalf("Expected %s in VolumeMount[%d], got %s", expected, i, container.VolumeMounts[i].MountPath)
115113
}

pkg/build/controller/strategy/util.go

+2-4
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,6 @@ import (
88

99
"github.com/golang/glog"
1010

11-
"github.com/google/cadvisor/container/crio"
12-
1311
"k8s.io/api/core/v1"
1412
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
1513
kvalidation "k8s.io/apimachinery/pkg/util/validation"
@@ -99,14 +97,14 @@ func setupCrioSocket(pod *v1.Pod) {
9997
Name: "crio-socket",
10098
VolumeSource: v1.VolumeSource{
10199
HostPath: &v1.HostPathVolumeSource{
102-
Path: crio.CrioSocket,
100+
Path: "/var/run/crio/crio.sock",
103101
},
104102
},
105103
}
106104

107105
crioSocketVolumeMount := v1.VolumeMount{
108106
Name: "crio-socket",
109-
MountPath: crio.CrioSocket,
107+
MountPath: "/var/run/crio/crio.sock",
110108
}
111109

112110
pod.Spec.Volumes = append(pod.Spec.Volumes,

0 commit comments

Comments
 (0)