Skip to content

Commit 0489f77

Browse files
committed
Move to kwok-ci
1 parent abf6ca8 commit 0489f77

File tree

19 files changed

+35
-31
lines changed

19 files changed

+35
-31
lines changed

cmd/kectl/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ import (
2020
"fmt"
2121
"os"
2222

23-
"github.com/wzshiming/kectl/pkg/cmd"
23+
"github.com/kwok-ci/kectl/pkg/cmd"
2424
)
2525

2626
func main() {

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module github.com/wzshiming/kectl
1+
module github.com/kwok-ci/kectl
22

33
go 1.24.2
44

hack/gen_old_scheme.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ import (
5050
EOF
5151

5252
for pkg in $(find_package "${ROOT_DIR}/pkg/old/apis"); do
53-
echo "${pkg}" | awk -F '/' '{print " "$1$2, "\"github.com/wzshiming/kectl/pkg/old/apis/"$1"\/"$2"\""}'
53+
echo "${pkg}" | awk -F '/' '{print " "$1$2, "\"github.com/kwok-ci/kectl/pkg/old/apis/"$1"\/"$2"\""}'
5454
done
5555

5656
cat <<EOF

pkg/cmd/del.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,10 @@ import (
2121
"fmt"
2222
"os"
2323

24+
"github.com/kwok-ci/kectl/pkg/client"
25+
"github.com/kwok-ci/kectl/pkg/printer"
26+
"github.com/kwok-ci/kectl/pkg/wellknown"
2427
"github.com/spf13/cobra"
25-
"github.com/wzshiming/kectl/pkg/client"
26-
"github.com/wzshiming/kectl/pkg/printer"
27-
"github.com/wzshiming/kectl/pkg/wellknown"
2828
"k8s.io/apimachinery/pkg/runtime/schema"
2929
)
3030

pkg/cmd/get.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,10 @@ import (
2121
"fmt"
2222
"os"
2323

24+
"github.com/kwok-ci/kectl/pkg/client"
25+
"github.com/kwok-ci/kectl/pkg/printer"
26+
"github.com/kwok-ci/kectl/pkg/wellknown"
2427
"github.com/spf13/cobra"
25-
"github.com/wzshiming/kectl/pkg/client"
26-
"github.com/wzshiming/kectl/pkg/printer"
27-
"github.com/wzshiming/kectl/pkg/wellknown"
2828
"k8s.io/apimachinery/pkg/runtime/schema"
2929
)
3030

pkg/cmd/global.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,13 +28,13 @@ import (
2828
"time"
2929

3030
"github.com/bgentry/speakeasy"
31+
"github.com/kwok-ci/kectl/pkg/client"
3132
"github.com/spf13/cobra"
32-
"github.com/wzshiming/kectl/pkg/client"
3333
"go.etcd.io/etcd/client/pkg/v3/srv"
3434
"go.etcd.io/etcd/client/pkg/v3/transport"
3535
clientv3 "go.etcd.io/etcd/client/v3"
3636

37-
_ "github.com/wzshiming/kectl/pkg/old/scheme"
37+
_ "github.com/kwok-ci/kectl/pkg/old/scheme"
3838
)
3939

4040
type secureCfg struct {

pkg/cmd/put.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,11 +25,11 @@ import (
2525
"time"
2626

2727
"github.com/etcd-io/auger/pkg/encoding"
28+
"github.com/kwok-ci/kectl/pkg/client"
29+
"github.com/kwok-ci/kectl/pkg/printer"
30+
"github.com/kwok-ci/kectl/pkg/scheme"
31+
"github.com/kwok-ci/kectl/pkg/wellknown"
2832
"github.com/spf13/cobra"
29-
"github.com/wzshiming/kectl/pkg/client"
30-
"github.com/wzshiming/kectl/pkg/printer"
31-
"github.com/wzshiming/kectl/pkg/scheme"
32-
"github.com/wzshiming/kectl/pkg/wellknown"
3333
"k8s.io/apimachinery/pkg/api/meta"
3434
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
3535
"k8s.io/apimachinery/pkg/apis/meta/v1/unstructured"

pkg/old/apis/auditregistration/v1alpha1/zz_generated.deepcopy.go

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pkg/old/apis/batch/v2alpha1/zz_generated.deepcopy.go

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pkg/old/apis/discovery/v1alpha1/zz_generated.deepcopy.go

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)