Skip to content

Commit d811482

Browse files
committed
chore: update module path for poddefaults
Signed-off-by: Kimonas Sotirchos <[email protected]>
1 parent 4fa8bb9 commit d811482

File tree

8 files changed

+18
-871
lines changed

8 files changed

+18
-871
lines changed

components/poddefaults-webhooks/go.mod

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module github.com/kubeflow/kubeflow/components/poddefaults-webhooks
1+
module github.com/kubeflow/dashboard/components/poddefaults-webhooks
22

33
go 1.20
44

@@ -18,7 +18,6 @@ require (
1818
github.com/cespare/xxhash/v2 v2.2.0 // indirect
1919
github.com/davecgh/go-spew v1.1.1 // indirect
2020
github.com/emicklei/go-restful/v3 v3.9.0 // indirect
21-
github.com/evanphx/json-patch v5.6.0+incompatible // indirect
2221
github.com/evanphx/json-patch/v5 v5.6.0 // indirect
2322
github.com/fsnotify/fsnotify v1.6.0 // indirect
2423
github.com/go-logr/logr v1.2.4 // indirect
@@ -33,7 +32,6 @@ require (
3332
github.com/google/go-cmp v0.5.9 // indirect
3433
github.com/google/gofuzz v1.2.0 // indirect
3534
github.com/google/uuid v1.3.0 // indirect
36-
github.com/googleapis/gnostic v0.5.5 // indirect
3735
github.com/imdario/mergo v0.3.12 // indirect
3836
github.com/josharian/intern v1.0.0 // indirect
3937
github.com/json-iterator/go v1.1.12 // indirect

components/poddefaults-webhooks/go.sum

Lines changed: 11 additions & 862 deletions
Large diffs are not rendered by default.

components/poddefaults-webhooks/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ import (
2626
"reflect"
2727
"strings"
2828

29-
settingsapi "github.com/kubeflow/kubeflow/components/poddefaults-webhooks/pkg/apis/settings/v1alpha1"
29+
settingsapi "github.com/kubeflow/dashboard/components/poddefaults-webhooks/pkg/apis/settings/v1alpha1"
3030
"github.com/mattbaird/jsonpatch"
3131
v1 "k8s.io/api/admission/v1"
3232
corev1 "k8s.io/api/core/v1"

components/poddefaults-webhooks/main_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import (
44
"reflect"
55
"testing"
66

7-
settingsapi "github.com/kubeflow/kubeflow/components/poddefaults-webhooks/pkg/apis/settings/v1alpha1"
7+
settingsapi "github.com/kubeflow/dashboard/components/poddefaults-webhooks/pkg/apis/settings/v1alpha1"
88
corev1 "k8s.io/api/core/v1"
99
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
1010
)

components/poddefaults-webhooks/pkg/apis/addtoscheme_settings_v1alpha1.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ limitations under the License.
1616
package apis
1717

1818
import (
19-
"github.com/kubeflow/kubeflow/components/poddefaults-webhooks/pkg/apis/settings/v1alpha1"
19+
"github.com/kubeflow/dashboard/components/poddefaults-webhooks/pkg/apis/settings/v1alpha1"
2020
)
2121

2222
func init() {

components/poddefaults-webhooks/pkg/apis/settings/v1alpha1/doc.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ limitations under the License.
1616
// Package v1alpha1 contains API Schema definitions for the settings v1alpha1 API group
1717
// +k8s:openapi-gen=true
1818
// +k8s:deepcopy-gen=package,register
19-
// +k8s:conversion-gen=github.com/kubeflow/kubeflow/components/poddefaults-webhooks/pkg/apis/settings
19+
// +k8s:conversion-gen=github.com/kubeflow/dashboard/components/poddefaults-webhooks/pkg/apis/settings
2020
// +k8s:defaulter-gen=TypeMeta
2121
// +groupName=kubeflow.org
2222
package v1alpha1

components/poddefaults-webhooks/pkg/apis/settings/v1alpha1/register.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ limitations under the License.
1818
// Package v1alpha1 contains API Schema definitions for the settings v1alpha1 API group
1919
// +k8s:openapi-gen=true
2020
// +k8s:deepcopy-gen=package,register
21-
// +k8s:conversion-gen=github.com/kubeflow/kubeflow/components/poddefaults-webhooks/pkg/apis/settings
21+
// +k8s:conversion-gen=github.com/kubeflow/dashboard/components/poddefaults-webhooks/pkg/apis/settings
2222
// +k8s:defaulter-gen=TypeMeta
2323
// +groupName="kubeflow.org"
2424
package v1alpha1

components/poddefaults-webhooks/scheme.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ limitations under the License.
1717
package main
1818

1919
import (
20-
"github.com/kubeflow/kubeflow/components/poddefaults-webhooks/pkg/apis"
20+
"github.com/kubeflow/dashboard/components/poddefaults-webhooks/pkg/apis"
2121
admissionregistrationv1 "k8s.io/api/admissionregistration/v1"
2222
corev1 "k8s.io/api/core/v1"
2323
"k8s.io/apimachinery/pkg/runtime"

0 commit comments

Comments
 (0)