diff --git a/README.md b/README.md index fcda0b5..549e1d4 100644 --- a/README.md +++ b/README.md @@ -48,7 +48,7 @@ To be configured on the repository settings. Clone the repository with the following command: ```bash -git clone https://github.com/interTwin-eu/interlink-docker-plugin.git && cd interlink-docker-plugin +git clone https://github.com/intertwin-eu/interlink-docker-plugin-docker-plugin.git && cd interlink-docker-plugin ``` and run the following command to build the docker image: @@ -63,5 +63,5 @@ docker build . -t : -f docker/Dockerfile.sidecar-docker To build the plugin executable, clone the repository and run the makefile: ```bash -git clone https://github.com/interTwin-eu/interlink-docker-plugin.git && cd interlink-docker-plugin && make +git clone https://github.com/intertwin-eu/interlink-docker-plugin-docker-plugin.git && cd interlink-docker-plugin && make ``` diff --git a/cmd/main.go b/cmd/main.go index 71961ef..6b110ca 100644 --- a/cmd/main.go +++ b/cmd/main.go @@ -8,9 +8,9 @@ import ( "github.com/sirupsen/logrus" "github.com/virtual-kubelet/virtual-kubelet/log" - commonIL "github.com/intertwin-eu/interlink/pkg/common" - docker "github.com/intertwin-eu/interlink/pkg/docker" - "github.com/intertwin-eu/interlink/pkg/docker/gpustrategies" + commonIL "github.com/intertwin-eu/interlink-docker-plugin/pkg/common" + docker "github.com/intertwin-eu/interlink-docker-plugin/pkg/docker" + "github.com/intertwin-eu/interlink-docker-plugin/pkg/docker/gpustrategies" ) func main() { diff --git a/go.mod b/go.mod index 0651986..3dcfc9b 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module github.com/intertwin-eu/interlink +module github.com/intertwin-eu/interlink-docker-plugin go 1.21 diff --git a/pkg/docker/Create.go b/pkg/docker/Create.go index 512e31d..cd32d39 100644 --- a/pkg/docker/Create.go +++ b/pkg/docker/Create.go @@ -12,7 +12,7 @@ import ( "github.com/containerd/containerd/log" v1 "k8s.io/api/core/v1" - commonIL "github.com/intertwin-eu/interlink/pkg/common" + commonIL "github.com/intertwin-eu/interlink-docker-plugin/pkg/common" ) // CreateHandler creates a Docker Container based on data provided by the InterLink API. diff --git a/pkg/docker/GetLogs.go b/pkg/docker/GetLogs.go index 9afef6a..85a6c44 100644 --- a/pkg/docker/GetLogs.go +++ b/pkg/docker/GetLogs.go @@ -11,7 +11,7 @@ import ( "github.com/containerd/containerd/log" - commonIL "github.com/intertwin-eu/interlink/pkg/common" + commonIL "github.com/intertwin-eu/interlink-docker-plugin/pkg/common" ) // GetLogsHandler performs a Docker logs command and returns its manipulated output diff --git a/pkg/docker/Status.go b/pkg/docker/Status.go index f4f9ed4..c6f203d 100644 --- a/pkg/docker/Status.go +++ b/pkg/docker/Status.go @@ -10,7 +10,7 @@ import ( "github.com/containerd/containerd/log" v1 "k8s.io/api/core/v1" - commonIL "github.com/intertwin-eu/interlink/pkg/common" + commonIL "github.com/intertwin-eu/interlink-docker-plugin/pkg/common" ) // StatusHandler checks Docker Container's status by running docker ps -af command and returns that status diff --git a/pkg/docker/aux.go b/pkg/docker/aux.go index f463e39..075fab2 100644 --- a/pkg/docker/aux.go +++ b/pkg/docker/aux.go @@ -13,8 +13,8 @@ import ( "fmt" - commonIL "github.com/intertwin-eu/interlink/pkg/common" - "github.com/intertwin-eu/interlink/pkg/docker/gpustrategies" + commonIL "github.com/intertwin-eu/interlink-docker-plugin/pkg/common" + "github.com/intertwin-eu/interlink-docker-plugin/pkg/docker/gpustrategies" ) type SidecarHandler struct { diff --git a/tests/sidecars/docker/PodGpu_test.go b/tests/sidecars/docker/PodGpu_test.go index 43806ba..cc053ab 100644 --- a/tests/sidecars/docker/PodGpu_test.go +++ b/tests/sidecars/docker/PodGpu_test.go @@ -16,7 +16,7 @@ import ( "io/ioutil" - "github.com/intertwin-eu/interlink/tests/sidecars/docker/templates" // replace with the actual module path + "github.com/intertwin-eu/interlink-docker-plugin/tests/sidecars/docker/templates" // replace with the actual module path v1core "k8s.io/api/core/v1" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" "k8s.io/client-go/kubernetes"