Skip to content

Commit 0ff8b72

Browse files
committed
chore: update module path for profiles
Signed-off-by: Kimonas Sotirchos <[email protected]>
1 parent 5f7116b commit 0ff8b72

File tree

12 files changed

+16
-16
lines changed

12 files changed

+16
-16
lines changed

components/profile-controller/PROJECT

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,21 +2,21 @@ domain: kubeflow.org
22
layout:
33
- go.kubebuilder.io/v3
44
projectName: profile-controller
5-
repo: github.com/kubeflow/kubeflow/components/profile-controller
5+
repo: github.com/kubeflow/dashboard/components/profile-controller
66
resources:
77
- api:
88
crdVersion: v1
99
namespaced: true
1010
controller: true
1111
domain: kubeflow.org
1212
kind: Profile
13-
path: github.com/kubeflow/kubeflow/components/profile-controller/api/v1
13+
path: github.com/kubeflow/dashboard/components/profile-controller/api/v1
1414
version: v1
1515
- api:
1616
crdVersion: v1
1717
namespaced: true
1818
domain: kubeflow.org
1919
kind: Profile
20-
path: github.com/kubeflow/kubeflow/components/profile-controller/api/v1beta1
20+
path: github.com/kubeflow/dashboard/components/profile-controller/api/v1beta1
2121
version: v1beta1
2222
version: "3"

components/profile-controller/controllers/plugin_iam.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import (
1212
"github.com/aws/aws-sdk-go/aws/session"
1313
"github.com/aws/aws-sdk-go/service/iam"
1414
"github.com/go-logr/logr"
15-
profilev1 "github.com/kubeflow/kubeflow/components/profile-controller/api/v1"
15+
profilev1 "github.com/kubeflow/dashboard/components/profile-controller/api/v1"
1616
"github.com/tidwall/gjson"
1717
corev1 "k8s.io/api/core/v1"
1818
"k8s.io/apimachinery/pkg/types"

components/profile-controller/controllers/plugin_workload_identity.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ import (
2020
"context"
2121
"fmt"
2222
"github.com/go-logr/logr"
23-
profilev1 "github.com/kubeflow/kubeflow/components/profile-controller/api/v1"
23+
profilev1 "github.com/kubeflow/dashboard/components/profile-controller/api/v1"
2424
"golang.org/x/oauth2/google"
2525
"google.golang.org/api/iam/v1"
2626
corev1 "k8s.io/api/core/v1"

components/profile-controller/controllers/profile_controller.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ import (
2727

2828
"github.com/cenkalti/backoff"
2929
"github.com/go-logr/logr"
30-
profilev1 "github.com/kubeflow/kubeflow/components/profile-controller/api/v1"
30+
profilev1 "github.com/kubeflow/dashboard/components/profile-controller/api/v1"
3131
"github.com/pkg/errors"
3232
"gopkg.in/fsnotify.v1"
3333
"gopkg.in/yaml.v2"

components/profile-controller/controllers/profile_controller_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import (
66
"reflect"
77
"testing"
88

9-
profilev1 "github.com/kubeflow/kubeflow/components/profile-controller/api/v1"
9+
profilev1 "github.com/kubeflow/dashboard/components/profile-controller/api/v1"
1010
"github.com/stretchr/testify/assert"
1111
corev1 "k8s.io/api/core/v1"
1212
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"

components/profile-controller/controllers/suite_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ import (
3030
logf "sigs.k8s.io/controller-runtime/pkg/log"
3131
"sigs.k8s.io/controller-runtime/pkg/log/zap"
3232

33-
kubefloworgv1 "github.com/kubeflow/kubeflow/components/profile-controller/api/v1"
33+
kubefloworgv1 "github.com/kubeflow/dashboard/components/profile-controller/api/v1"
3434
//+kubebuilder:scaffold:imports
3535
)
3636

components/profile-controller/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module github.com/kubeflow/kubeflow/components/profile-controller
1+
module github.com/kubeflow/dashboard/components/profile-controller
22

33
go 1.17
44

components/profile-controller/main.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,9 @@ import (
3232
"sigs.k8s.io/controller-runtime/pkg/healthz"
3333
"sigs.k8s.io/controller-runtime/pkg/log/zap"
3434

35-
profilev1 "github.com/kubeflow/kubeflow/components/profile-controller/api/v1"
36-
kubefloworgv1beta1 "github.com/kubeflow/kubeflow/components/profile-controller/api/v1beta1"
37-
"github.com/kubeflow/kubeflow/components/profile-controller/controllers"
35+
profilev1 "github.com/kubeflow/dashboard/components/profile-controller/api/v1"
36+
kubefloworgv1beta1 "github.com/kubeflow/dashboard/components/profile-controller/api/v1beta1"
37+
"github.com/kubeflow/dashboard/components/profile-controller/controllers"
3838
//+kubebuilder:scaffold:imports
3939
)
4040

components/profile-controller/third_party/library/license.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
--------------------------------------------------------------------------------
2-
kubeflow/kubeflow Apache License 2.0 https://github.com/kubeflow/kubeflow/blob/master/LICENSE
2+
kubeflow/dashboard Apache License 2.0 https://github.com/kubeflow/dashboard/blob/master/LICENSE
33
--------------------------------------------------------------------------------
44

55
Apache License

components/profile-controller/third_party_licenses/dep.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
github.com/kubeflow/kubeflow/components/profile-controller
1+
github.com/kubeflow/dashboard/components/profile-controller
22
cloud.google.com/go
33
github.com/BurntSushi/toml
44
github.com/alecthomas/template

0 commit comments

Comments
 (0)