diff --git a/cmd/deepcopy/main.go b/cmd/deepcopy/main.go index 00b2ae5..94ba31d 100644 --- a/cmd/deepcopy/main.go +++ b/cmd/deepcopy/main.go @@ -3,7 +3,7 @@ package main import ( "os" - "github.com/acorn-io/nah/pkg/deepcopy" + "github.com/obot-platform/nah/pkg/deepcopy" ) func main() { diff --git a/go.mod b/go.mod index 3af226a..f1d3ea2 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module github.com/acorn-io/nah +module github.com/obot-platform/nah go 1.23 diff --git a/pkg/apply/desiredset.go b/pkg/apply/desiredset.go index d656ff2..4b63615 100644 --- a/pkg/apply/desiredset.go +++ b/pkg/apply/desiredset.go @@ -3,7 +3,7 @@ package apply import ( "context" - "github.com/acorn-io/nah/pkg/apply/objectset" + "github.com/obot-platform/nah/pkg/apply/objectset" "k8s.io/apimachinery/pkg/runtime/schema" kclient "sigs.k8s.io/controller-runtime/pkg/client" "sigs.k8s.io/controller-runtime/pkg/client/apiutil" diff --git a/pkg/apply/desiredset_apply.go b/pkg/apply/desiredset_apply.go index 9004f68..7b2019a 100644 --- a/pkg/apply/desiredset_apply.go +++ b/pkg/apply/desiredset_apply.go @@ -5,8 +5,8 @@ import ( "encoding/hex" "fmt" - "github.com/acorn-io/nah/pkg/apply/objectset" - "github.com/acorn-io/nah/pkg/merr" + "github.com/obot-platform/nah/pkg/apply/objectset" + "github.com/obot-platform/nah/pkg/merr" "k8s.io/apimachinery/pkg/api/meta" "k8s.io/apimachinery/pkg/labels" "k8s.io/apimachinery/pkg/runtime" diff --git a/pkg/apply/desiredset_compare.go b/pkg/apply/desiredset_compare.go index e7f8e24..ac31e45 100644 --- a/pkg/apply/desiredset_compare.go +++ b/pkg/apply/desiredset_compare.go @@ -12,8 +12,8 @@ import ( "reflect" "strings" - "github.com/acorn-io/nah/pkg/data" - "github.com/acorn-io/nah/pkg/log" + "github.com/obot-platform/nah/pkg/data" + "github.com/obot-platform/nah/pkg/log" "k8s.io/apimachinery/pkg/api/meta" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" "k8s.io/apimachinery/pkg/apis/meta/v1/unstructured" diff --git a/pkg/apply/desiredset_process.go b/pkg/apply/desiredset_process.go index 55d97b2..4f4263a 100644 --- a/pkg/apply/desiredset_process.go +++ b/pkg/apply/desiredset_process.go @@ -5,9 +5,9 @@ import ( "fmt" "sort" - "github.com/acorn-io/nah/pkg/apply/objectset" - "github.com/acorn-io/nah/pkg/log" - "github.com/acorn-io/nah/pkg/merr" + "github.com/obot-platform/nah/pkg/apply/objectset" + "github.com/obot-platform/nah/pkg/log" + "github.com/obot-platform/nah/pkg/merr" apierrors "k8s.io/apimachinery/pkg/api/errors" "k8s.io/apimachinery/pkg/api/meta" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" diff --git a/pkg/conditions/setter.go b/pkg/conditions/setter.go index 8852884..8b071ed 100644 --- a/pkg/conditions/setter.go +++ b/pkg/conditions/setter.go @@ -6,7 +6,7 @@ import ( "log/slog" "reflect" - "github.com/acorn-io/nah/pkg/router" + "github.com/obot-platform/nah/pkg/router" apierrors "k8s.io/apimachinery/pkg/api/errors" "k8s.io/apimachinery/pkg/api/meta" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" diff --git a/pkg/data/generic.go b/pkg/data/generic.go index a364e06..6a8fac8 100644 --- a/pkg/data/generic.go +++ b/pkg/data/generic.go @@ -5,7 +5,7 @@ import ( "encoding/json" "fmt" - "github.com/acorn-io/nah/pkg/typed" + "github.com/obot-platform/nah/pkg/typed" "github.com/sirupsen/logrus" "k8s.io/kube-openapi/pkg/common" "k8s.io/kube-openapi/pkg/validation/spec" diff --git a/pkg/handlers/handlers.go b/pkg/handlers/handlers.go index 60f46c0..652bef4 100644 --- a/pkg/handlers/handlers.go +++ b/pkg/handlers/handlers.go @@ -1,8 +1,8 @@ package handlers import ( - "github.com/acorn-io/nah/pkg/apply" - "github.com/acorn-io/nah/pkg/router" + "github.com/obot-platform/nah/pkg/apply" + "github.com/obot-platform/nah/pkg/router" ) // GCOrphans will delete an object whose owner has been deleted. diff --git a/pkg/leader/leader.go b/pkg/leader/leader.go index bceadd7..8122ca3 100644 --- a/pkg/leader/leader.go +++ b/pkg/leader/leader.go @@ -8,7 +8,7 @@ import ( "syscall" "time" - "github.com/acorn-io/nah/pkg/log" + "github.com/obot-platform/nah/pkg/log" "k8s.io/client-go/rest" "k8s.io/client-go/tools/leaderelection" "k8s.io/client-go/tools/leaderelection/resourcelock" diff --git a/pkg/logrus/init.go b/pkg/logrus/init.go index fbfa40a..90f5fc0 100644 --- a/pkg/logrus/init.go +++ b/pkg/logrus/init.go @@ -1,8 +1,8 @@ package logrus import ( - "github.com/acorn-io/nah/pkg/log" "github.com/bombsimon/logrusr/v4" + "github.com/obot-platform/nah/pkg/log" "github.com/sirupsen/logrus" klogv2 "k8s.io/klog/v2" crlog "sigs.k8s.io/controller-runtime/pkg/log" diff --git a/pkg/restconfig/restconfig.go b/pkg/restconfig/restconfig.go index 2eb1529..fd78c68 100644 --- a/pkg/restconfig/restconfig.go +++ b/pkg/restconfig/restconfig.go @@ -4,7 +4,7 @@ import ( "net/url" "os" - "github.com/acorn-io/nah/pkg/ratelimit" + "github.com/obot-platform/nah/pkg/ratelimit" "k8s.io/apimachinery/pkg/runtime" "k8s.io/apimachinery/pkg/runtime/serializer" "k8s.io/client-go/kubernetes/scheme" diff --git a/pkg/router/client.go b/pkg/router/client.go index 6dc54f8..b7b364a 100644 --- a/pkg/router/client.go +++ b/pkg/router/client.go @@ -3,7 +3,7 @@ package router import ( "context" - "github.com/acorn-io/nah/pkg/backend" + "github.com/obot-platform/nah/pkg/backend" "k8s.io/apimachinery/pkg/api/meta" "k8s.io/apimachinery/pkg/fields" "k8s.io/apimachinery/pkg/labels" diff --git a/pkg/router/handler.go b/pkg/router/handler.go index a65d6a8..ba323cd 100644 --- a/pkg/router/handler.go +++ b/pkg/router/handler.go @@ -7,10 +7,10 @@ import ( "sync" "time" - "github.com/acorn-io/nah/pkg/backend" - "github.com/acorn-io/nah/pkg/log" - "github.com/acorn-io/nah/pkg/merr" "github.com/moby/locker" + "github.com/obot-platform/nah/pkg/backend" + "github.com/obot-platform/nah/pkg/log" + "github.com/obot-platform/nah/pkg/merr" "golang.org/x/exp/maps" "golang.org/x/time/rate" apierror "k8s.io/apimachinery/pkg/api/errors" diff --git a/pkg/router/handlers.go b/pkg/router/handlers.go index 5ca5cba..f248144 100644 --- a/pkg/router/handlers.go +++ b/pkg/router/handlers.go @@ -3,7 +3,7 @@ package router import ( "sync" - "github.com/acorn-io/nah/pkg/merr" + "github.com/obot-platform/nah/pkg/merr" "k8s.io/apimachinery/pkg/runtime/schema" ) diff --git a/pkg/router/healthz.go b/pkg/router/healthz.go index 7a2c796..10bd213 100644 --- a/pkg/router/healthz.go +++ b/pkg/router/healthz.go @@ -8,7 +8,7 @@ import ( "sync" "syscall" - "github.com/acorn-io/nah/pkg/log" + "github.com/obot-platform/nah/pkg/log" ) var healthz struct { diff --git a/pkg/router/router.go b/pkg/router/router.go index 4f91a93..ceff827 100644 --- a/pkg/router/router.go +++ b/pkg/router/router.go @@ -7,8 +7,8 @@ import ( "path/filepath" "runtime" - "github.com/acorn-io/nah/pkg/backend" - "github.com/acorn-io/nah/pkg/leader" + "github.com/obot-platform/nah/pkg/backend" + "github.com/obot-platform/nah/pkg/leader" "k8s.io/apimachinery/pkg/fields" "k8s.io/apimachinery/pkg/labels" kclient "sigs.k8s.io/controller-runtime/pkg/client" diff --git a/pkg/router/save.go b/pkg/router/save.go index ef19a62..4aa7b02 100644 --- a/pkg/router/save.go +++ b/pkg/router/save.go @@ -3,7 +3,7 @@ package router import ( "reflect" - "github.com/acorn-io/nah/pkg/backend" + "github.com/obot-platform/nah/pkg/backend" "k8s.io/apimachinery/pkg/api/equality" "k8s.io/apimachinery/pkg/runtime" kclient "sigs.k8s.io/controller-runtime/pkg/client" diff --git a/pkg/router/tester/tester.go b/pkg/router/tester/tester.go index 5e20c35..333f08a 100644 --- a/pkg/router/tester/tester.go +++ b/pkg/router/tester/tester.go @@ -12,9 +12,9 @@ import ( "testing" "time" - "github.com/acorn-io/nah/pkg/router" - "github.com/acorn-io/nah/pkg/yaml" "github.com/hexops/autogold/v2" + "github.com/obot-platform/nah/pkg/router" + "github.com/obot-platform/nah/pkg/yaml" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" "k8s.io/apimachinery/pkg/runtime" diff --git a/pkg/router/tester/types.go b/pkg/router/tester/types.go index 2a0dc2f..fcfb6fa 100644 --- a/pkg/router/tester/types.go +++ b/pkg/router/tester/types.go @@ -7,9 +7,9 @@ import ( "strings" "time" - "github.com/acorn-io/nah/pkg/router" - "github.com/acorn-io/nah/pkg/uncached" "github.com/google/uuid" + "github.com/obot-platform/nah/pkg/router" + "github.com/obot-platform/nah/pkg/uncached" "golang.org/x/exp/maps" "k8s.io/apimachinery/pkg/api/errors" meta2 "k8s.io/apimachinery/pkg/api/meta" diff --git a/pkg/router/trigger.go b/pkg/router/trigger.go index 015d614..c4882a9 100644 --- a/pkg/router/trigger.go +++ b/pkg/router/trigger.go @@ -4,9 +4,9 @@ import ( "strings" "sync" - "github.com/acorn-io/nah/pkg/backend" - "github.com/acorn-io/nah/pkg/log" - "github.com/acorn-io/nah/pkg/uncached" + "github.com/obot-platform/nah/pkg/backend" + "github.com/obot-platform/nah/pkg/log" + "github.com/obot-platform/nah/pkg/uncached" "k8s.io/apimachinery/pkg/fields" "k8s.io/apimachinery/pkg/labels" "k8s.io/apimachinery/pkg/runtime" diff --git a/pkg/runtime/backend.go b/pkg/runtime/backend.go index 1df2042..553bc57 100644 --- a/pkg/runtime/backend.go +++ b/pkg/runtime/backend.go @@ -9,10 +9,10 @@ import ( "sync" "time" - "github.com/acorn-io/nah/pkg/backend" - "github.com/acorn-io/nah/pkg/fields" - "github.com/acorn-io/nah/pkg/router" - "github.com/acorn-io/nah/pkg/uncached" + "github.com/obot-platform/nah/pkg/backend" + "github.com/obot-platform/nah/pkg/fields" + "github.com/obot-platform/nah/pkg/router" + "github.com/obot-platform/nah/pkg/uncached" "k8s.io/apimachinery/pkg/runtime" "k8s.io/apimachinery/pkg/runtime/schema" kcache "k8s.io/client-go/tools/cache" diff --git a/pkg/runtime/cached.go b/pkg/runtime/cached.go index 61ff47a..7d07e08 100644 --- a/pkg/runtime/cached.go +++ b/pkg/runtime/cached.go @@ -7,7 +7,7 @@ import ( "sync" "time" - "github.com/acorn-io/nah/pkg/uncached" + "github.com/obot-platform/nah/pkg/uncached" apierrors "k8s.io/apimachinery/pkg/api/errors" "k8s.io/apimachinery/pkg/api/meta" "k8s.io/apimachinery/pkg/runtime" diff --git a/pkg/runtime/clients.go b/pkg/runtime/clients.go index b66c55a..cdee2f6 100644 --- a/pkg/runtime/clients.go +++ b/pkg/runtime/clients.go @@ -3,8 +3,8 @@ package runtime import ( "time" - "github.com/acorn-io/nah/pkg/mapper" - "github.com/acorn-io/nah/pkg/runtime/multi" + "github.com/obot-platform/nah/pkg/mapper" + "github.com/obot-platform/nah/pkg/runtime/multi" "k8s.io/apimachinery/pkg/runtime" "k8s.io/client-go/rest" "k8s.io/client-go/util/workqueue" diff --git a/pkg/runtime/controller.go b/pkg/runtime/controller.go index 9484cd9..090f35c 100644 --- a/pkg/runtime/controller.go +++ b/pkg/runtime/controller.go @@ -7,7 +7,7 @@ import ( "sync" "time" - "github.com/acorn-io/nah/pkg/log" + "github.com/obot-platform/nah/pkg/log" apierror "k8s.io/apimachinery/pkg/api/errors" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" "k8s.io/apimachinery/pkg/apis/meta/v1/unstructured" diff --git a/pkg/runtime/multi/client.go b/pkg/runtime/multi/client.go index 8b69eb5..8ba8ce5 100644 --- a/pkg/runtime/multi/client.go +++ b/pkg/runtime/multi/client.go @@ -4,7 +4,7 @@ import ( "context" "fmt" - "github.com/acorn-io/nah/pkg/uncached" + "github.com/obot-platform/nah/pkg/uncached" "k8s.io/apimachinery/pkg/api/meta" "k8s.io/apimachinery/pkg/runtime" "k8s.io/apimachinery/pkg/runtime/schema" diff --git a/pkg/watcher/watcher.go b/pkg/watcher/watcher.go index 4d97ec6..95f90db 100644 --- a/pkg/watcher/watcher.go +++ b/pkg/watcher/watcher.go @@ -7,8 +7,8 @@ import ( "strings" "time" - "github.com/acorn-io/nah/pkg/log" - "github.com/acorn-io/nah/pkg/typed" + "github.com/obot-platform/nah/pkg/log" + "github.com/obot-platform/nah/pkg/typed" apierrors "k8s.io/apimachinery/pkg/api/errors" meta2 "k8s.io/apimachinery/pkg/api/meta" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" diff --git a/pkg/webhook/router.go b/pkg/webhook/router.go index b7e6b71..7e57adc 100644 --- a/pkg/webhook/router.go +++ b/pkg/webhook/router.go @@ -6,7 +6,7 @@ import ( "fmt" "net/http" - "github.com/acorn-io/nah/pkg/log" + "github.com/obot-platform/nah/pkg/log" "gomodules.xyz/jsonpatch/v2" v1 "k8s.io/api/admission/v1" "k8s.io/apimachinery/pkg/api/errors" diff --git a/pkg/yaml/yaml.go b/pkg/yaml/yaml.go index a8129b4..bfb4454 100644 --- a/pkg/yaml/yaml.go +++ b/pkg/yaml/yaml.go @@ -8,7 +8,7 @@ import ( "io" "strings" - "github.com/acorn-io/nah/pkg/data" + "github.com/obot-platform/nah/pkg/data" "k8s.io/apimachinery/pkg/apis/meta/v1/unstructured" "k8s.io/apimachinery/pkg/runtime" yamlDecoder "k8s.io/apimachinery/pkg/util/yaml" diff --git a/router.go b/router.go index b97dc72..b2880c7 100644 --- a/router.go +++ b/router.go @@ -3,11 +3,11 @@ package baaah import ( "fmt" - "github.com/acorn-io/nah/pkg/backend" - "github.com/acorn-io/nah/pkg/leader" - "github.com/acorn-io/nah/pkg/restconfig" - "github.com/acorn-io/nah/pkg/router" - bruntime "github.com/acorn-io/nah/pkg/runtime" + "github.com/obot-platform/nah/pkg/backend" + "github.com/obot-platform/nah/pkg/leader" + "github.com/obot-platform/nah/pkg/restconfig" + "github.com/obot-platform/nah/pkg/router" + bruntime "github.com/obot-platform/nah/pkg/runtime" "k8s.io/apimachinery/pkg/runtime" "k8s.io/client-go/rest" )