Skip to content

Commit 6cf5703

Browse files
authored
Change remaining public IBM refs (#249)
1 parent ce79191 commit 6cf5703

File tree

60 files changed

+166
-166
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

60 files changed

+166
-166
lines changed

cmd/kar-controllers/app/server.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,9 @@ import (
3535
"k8s.io/client-go/tools/clientcmd"
3636
"net/http"
3737

38-
"github.com/IBM/multi-cluster-app-dispatcher/cmd/kar-controllers/app/options"
39-
"github.com/IBM/multi-cluster-app-dispatcher/pkg/controller/queuejob"
40-
"github.com/IBM/multi-cluster-app-dispatcher/pkg/health"
38+
"github.com/project-codeflare/multi-cluster-app-dispatcher/cmd/kar-controllers/app/options"
39+
"github.com/project-codeflare/multi-cluster-app-dispatcher/pkg/controller/queuejob"
40+
"github.com/project-codeflare/multi-cluster-app-dispatcher/pkg/health"
4141

4242
_ "k8s.io/client-go/plugin/pkg/client/auth/gcp"
4343
)

cmd/kar-controllers/main.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@ import (
3434
"flag"
3535
"fmt"
3636

37-
"github.com/IBM/multi-cluster-app-dispatcher/cmd/kar-controllers/app"
38-
"github.com/IBM/multi-cluster-app-dispatcher/cmd/kar-controllers/app/options"
37+
"github.com/project-codeflare/multi-cluster-app-dispatcher/cmd/kar-controllers/app"
38+
"github.com/project-codeflare/multi-cluster-app-dispatcher/cmd/kar-controllers/app/options"
3939

4040
"os"
4141
)

deployment/build-podman.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
set -x
33

44
project_root=$(cd ..; pwd)
5-
git_path=github.com/IBM/multi-cluster-app-dispatcher
5+
git_path=github.com/project-codeflare/multi-cluster-app-dispatcher
66

77
container_id=$(podman run --privileged --rm -v "$project_root":/go/src/$git_path -d -w /go/src/$git_path/deployment golang:1.16.3-alpine3.13 ./build-inside-container.sh)
88

deployment/build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
set -x
33

44
project_root=$(cd ..; pwd)
5-
git_path=github.com/IBM/multi-cluster-app-dispatcher
5+
git_path=github.com/project-codeflare/multi-cluster-app-dispatcher
66

77
container_id=$(docker run --rm -v "$project_root":/go/src/$git_path -d -w /go/src/$git_path/deployment golang:1.16.3-alpine3.13 ./build-inside-container.sh)
88

pkg/client/clientset/controller-versioned/clients/appwrapper.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ import (
3636
"os"
3737
"time"
3838

39-
arbv1 "github.com/IBM/multi-cluster-app-dispatcher/pkg/apis/controller/v1beta1"
39+
arbv1 "github.com/project-codeflare/multi-cluster-app-dispatcher/pkg/apis/controller/v1beta1"
4040

4141
apiextensionsv1 "k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1"
4242
apiextensionsclient "k8s.io/apiextensions-apiserver/pkg/client/clientset/clientset"

pkg/client/clientset/controller-versioned/clients/factory.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ import (
3535
"k8s.io/apimachinery/pkg/runtime/serializer"
3636
"k8s.io/client-go/rest"
3737

38-
arbv1 "github.com/IBM/multi-cluster-app-dispatcher/pkg/apis/controller/v1beta1"
38+
arbv1 "github.com/project-codeflare/multi-cluster-app-dispatcher/pkg/apis/controller/v1beta1"
3939
)
4040

4141
func NewClient(cfg *rest.Config) (*rest.RESTClient, *runtime.Scheme, error) {

pkg/client/clientset/controller-versioned/clients/queuejob.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ import (
3636
"os"
3737
"time"
3838

39-
arbv1 "github.com/IBM/multi-cluster-app-dispatcher/pkg/apis/controller/v1beta1"
39+
arbv1 "github.com/project-codeflare/multi-cluster-app-dispatcher/pkg/apis/controller/v1beta1"
4040

4141
apiextensionsv1 "k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1"
4242
apiextensionsclient "k8s.io/apiextensions-apiserver/pkg/client/clientset/clientset"

pkg/client/clientset/controller-versioned/clients/schedulingspec.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ import (
3636
"os"
3737
"time"
3838

39-
arbv1 "github.com/IBM/multi-cluster-app-dispatcher/pkg/apis/controller/v1beta1"
39+
arbv1 "github.com/project-codeflare/multi-cluster-app-dispatcher/pkg/apis/controller/v1beta1"
4040

4141
apiextensionsv1 "k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1"
4242
apiextensionsclient "k8s.io/apiextensions-apiserver/pkg/client/clientset/clientset"

pkg/client/clientset/controller-versioned/clientset.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ limitations under the License.
3131
package controller_versioned
3232

3333
import (
34-
"github.com/IBM/multi-cluster-app-dispatcher/pkg/client/clientset/controller-versioned/typed/v1"
34+
"github.com/project-codeflare/multi-cluster-app-dispatcher/pkg/client/clientset/controller-versioned/typed/v1"
3535

3636
"k8s.io/client-go/rest"
3737
)

pkg/client/clientset/controller-versioned/scheme/register.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ limitations under the License.
3131
package scheme
3232

3333
import (
34-
arbv1 "github.com/IBM/multi-cluster-app-dispatcher/pkg/apis/controller/v1beta1"
34+
arbv1 "github.com/project-codeflare/multi-cluster-app-dispatcher/pkg/apis/controller/v1beta1"
3535

3636
v1 "k8s.io/apimachinery/pkg/apis/meta/v1"
3737
runtime "k8s.io/apimachinery/pkg/runtime"

0 commit comments

Comments
 (0)