Skip to content

Commit

Permalink
Update hydrophone package import paths
Browse files Browse the repository at this point in the history
Signed-off-by: rjsadow <richard.j.sadowski@gmail.com>
  • Loading branch information
rjsadow committed Jan 11, 2024
1 parent c922485 commit 2b6af67
Show file tree
Hide file tree
Showing 10 changed files with 20 additions and 20 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ go build -o bin/hydrophone main.go
## Install

```
go install github.com/dims/hydrophone@latest
go install github.com/kubernetes-sigs/hydrophone@latest
```

## Command line options
Expand Down Expand Up @@ -141,11 +141,11 @@ Participation in the Kubernetes community is governed by the [Kubernetes Code of

[Kubernetes Code of Conduct]: code-of-conduct.md
[community page]: https://kubernetes.io/community/
[contributor guide]: https://github.com/dims/hydrophone/blob/main/CONTRIBUTING.md
[issue tracker]: https://github.com/dims/hydrophone/issues
[contributor guide]: https://github.com/kubernetes-sigs/hydrophone/blob/main/CONTRIBUTING.md
[issue tracker]: https://github.com/kubernetes-sigs/hydrophone/issues
[@dims]: https://github.com/dims
[@rjsadow]: https://github.com/rjsadow
[filing an issue]: https://github.com/dims/hydrophone/issues/new
[filing an issue]: https://github.com/kubernetes-sigs/hydrophone/issues/new
[Kubernetes Slack]: http://slack.k8s.io/
[SIG-Testing Mailing List]: https://groups.google.com/forum/#!forum/kubernetes-sig-testing
[SIG-Release Mailing List]: https://groups.google.com/forum/#!forum/kubernetes-sig-release
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/dims/hydrophone
module github.com/kubernetes-sigs/hydrophone

go 1.21

Expand Down
8 changes: 4 additions & 4 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@ package main
import (
"os"

"github.com/dims/hydrophone/pkg/client"
"github.com/dims/hydrophone/pkg/common"
"github.com/dims/hydrophone/pkg/log"
"github.com/dims/hydrophone/pkg/service"
"github.com/kubernetes-sigs/hydrophone/pkg/client"
"github.com/kubernetes-sigs/hydrophone/pkg/common"
"github.com/kubernetes-sigs/hydrophone/pkg/log"
"github.com/kubernetes-sigs/hydrophone/pkg/service"
)

func main() {
Expand Down
4 changes: 2 additions & 2 deletions pkg/client/check.go
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ import (
"k8s.io/client-go/informers"
"k8s.io/client-go/tools/cache"

"github.com/dims/hydrophone/pkg/common"
"github.com/dims/hydrophone/pkg/log"
"github.com/kubernetes-sigs/hydrophone/pkg/common"
"github.com/kubernetes-sigs/hydrophone/pkg/log"
)

// Contains all the necessary channels to transfer data
Expand Down
4 changes: 2 additions & 2 deletions pkg/client/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ import (
"k8s.io/client-go/kubernetes"
"k8s.io/client-go/rest"

"github.com/dims/hydrophone/pkg/common"
"github.com/dims/hydrophone/pkg/log"
"github.com/kubernetes-sigs/hydrophone/pkg/common"
"github.com/kubernetes-sigs/hydrophone/pkg/log"
)

var (
Expand Down
2 changes: 1 addition & 1 deletion pkg/client/download.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ import (
"k8s.io/client-go/rest"
"k8s.io/client-go/tools/remotecommand"

"github.com/dims/hydrophone/pkg/common"
"github.com/kubernetes-sigs/hydrophone/pkg/common"
)

func downloadFile(config *rest.Config, clientset *kubernetes.Clientset,
Expand Down
2 changes: 1 addition & 1 deletion pkg/client/pod_log.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ import (
v1 "k8s.io/api/core/v1"
"k8s.io/client-go/kubernetes"

"github.com/dims/hydrophone/pkg/common"
"github.com/kubernetes-sigs/hydrophone/pkg/common"
)

// List pod resource with the given namespace
Expand Down
2 changes: 1 addition & 1 deletion pkg/common/args.go
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ import (
"k8s.io/client-go/kubernetes"
"k8s.io/client-go/rest"

"github.com/dims/hydrophone/pkg/log"
"github.com/kubernetes-sigs/hydrophone/pkg/log"
)

// ArgConfig stores the argument passed when running the program
Expand Down
4 changes: 2 additions & 2 deletions pkg/service/init.go
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ import (
"k8s.io/client-go/rest"
"k8s.io/client-go/tools/clientcmd"

"github.com/dims/hydrophone/pkg/common"
"github.com/dims/hydrophone/pkg/log"
"github.com/kubernetes-sigs/hydrophone/pkg/common"
"github.com/kubernetes-sigs/hydrophone/pkg/log"
)

var (
Expand Down
4 changes: 2 additions & 2 deletions pkg/service/list_images.go
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ import (
"strings"
"time"

"github.com/dims/hydrophone/pkg/common"
"github.com/dims/hydrophone/pkg/log"
"github.com/kubernetes-sigs/hydrophone/pkg/common"
"github.com/kubernetes-sigs/hydrophone/pkg/log"

corev1 "k8s.io/api/core/v1"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
Expand Down

0 comments on commit 2b6af67

Please sign in to comment.