Skip to content

Commit

Permalink
fix: rename go module
Browse files Browse the repository at this point in the history
  • Loading branch information
dhenkel92 committed Dec 6, 2023
1 parent 2b84de5 commit 59ebf7f
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion cmd/kubectl-pdb/kubectl-pdb.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package main
import (
"os"

"github.com/dhenkel92/kubectl-utils/pkg/cmd"
"github.com/dhenkel92/kubectl-pdb/pkg/cmd"
"github.com/spf13/cobra"
"github.com/spf13/pflag"
"k8s.io/cli-runtime/pkg/genericclioptions"
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/dhenkel92/kubectl-utils
module github.com/dhenkel92/kubectl-pdb

go 1.21

Expand Down
4 changes: 2 additions & 2 deletions pkg/cmd/create_pdb.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ import (
"fmt"
"strings"

"github.com/dhenkel92/kubectl-utils/pkg/kube"
"github.com/dhenkel92/kubectl-utils/pkg/utils"
"github.com/dhenkel92/kubectl-pdb/pkg/kube"
"github.com/dhenkel92/kubectl-pdb/pkg/utils"
"github.com/liggitt/tabwriter"
"github.com/spf13/cobra"
policyv1 "k8s.io/api/policy/v1"
Expand Down
2 changes: 1 addition & 1 deletion pkg/cmd/pdb.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"fmt"
"strings"

"github.com/dhenkel92/kubectl-utils/pkg/kube"
"github.com/dhenkel92/kubectl-pdb/pkg/kube"
"github.com/liggitt/tabwriter"
"github.com/spf13/cobra"
corev1 "k8s.io/api/core/v1"
Expand Down
4 changes: 2 additions & 2 deletions pkg/cmd/pods.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ import (
"fmt"
"strings"

"github.com/dhenkel92/kubectl-utils/pkg/kube"
printerUtils "github.com/dhenkel92/kubectl-utils/pkg/printer"
"github.com/dhenkel92/kubectl-pdb/pkg/kube"
printerUtils "github.com/dhenkel92/kubectl-pdb/pkg/printer"
"github.com/spf13/cobra"
"k8s.io/apimachinery/pkg/api/errors"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
Expand Down
2 changes: 1 addition & 1 deletion pkg/kube/pdbs.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package kube
import (
"context"

"github.com/dhenkel92/kubectl-utils/pkg/utils"
"github.com/dhenkel92/kubectl-pdb/pkg/utils"
policyv1 "k8s.io/api/policy/v1"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
"k8s.io/apimachinery/pkg/apis/meta/v1/unstructured"
Expand Down

0 comments on commit 59ebf7f

Please sign in to comment.