Skip to content

Commit

Permalink
chore: move to obot-platform org
Browse files Browse the repository at this point in the history
Signed-off-by: Donnie Adams <[email protected]>
  • Loading branch information
thedadams committed Dec 17, 2024
1 parent e650620 commit e9169e4
Show file tree
Hide file tree
Showing 30 changed files with 51 additions and 51 deletions.
2 changes: 1 addition & 1 deletion cmd/deepcopy/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package main
import (
"os"

"github.com/acorn-io/nah/pkg/deepcopy"
"github.com/obot-platform/nah/pkg/deepcopy"
)

func main() {
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module github.com/acorn-io/nah
module github.com/obot-platform/nah

go 1.23

Expand Down
2 changes: 1 addition & 1 deletion pkg/apply/desiredset.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
4 changes: 2 additions & 2 deletions pkg/apply/desiredset_apply.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
4 changes: 2 additions & 2 deletions pkg/apply/desiredset_compare.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
6 changes: 3 additions & 3 deletions pkg/apply/desiredset_process.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion pkg/conditions/setter.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion pkg/data/generic.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
4 changes: 2 additions & 2 deletions pkg/handlers/handlers.go
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
2 changes: 1 addition & 1 deletion pkg/leader/leader.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion pkg/logrus/init.go
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
2 changes: 1 addition & 1 deletion pkg/restconfig/restconfig.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion pkg/router/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
6 changes: 3 additions & 3 deletions pkg/router/handler.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion pkg/router/handlers.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"
)

Expand Down
2 changes: 1 addition & 1 deletion pkg/router/healthz.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
"sync"
"syscall"

"github.com/acorn-io/nah/pkg/log"
"github.com/obot-platform/nah/pkg/log"
)

var healthz struct {
Expand Down
4 changes: 2 additions & 2 deletions pkg/router/router.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion pkg/router/save.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
4 changes: 2 additions & 2 deletions pkg/router/tester/tester.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
4 changes: 2 additions & 2 deletions pkg/router/tester/types.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
6 changes: 3 additions & 3 deletions pkg/router/trigger.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
8 changes: 4 additions & 4 deletions pkg/runtime/backend.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion pkg/runtime/cached.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
4 changes: 2 additions & 2 deletions pkg/runtime/clients.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion pkg/runtime/controller.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion pkg/runtime/multi/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
4 changes: 2 additions & 2 deletions pkg/watcher/watcher.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion pkg/webhook/router.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion pkg/yaml/yaml.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
10 changes: 5 additions & 5 deletions router.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"
)
Expand Down

0 comments on commit e9169e4

Please sign in to comment.