Skip to content

Commit fcb268d

Browse files
committed
Change module to github.com/buildpacks-community/kpack-cli
1 parent 62aa9c9 commit fcb268d

File tree

162 files changed

+429
-429
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

162 files changed

+429
-429
lines changed

.github/workflows/ci.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ jobs:
6868
ARCH=$2
6969
echo "Building for $OS-$ARCH"
7070
GOOS=$OS CGO_ENABLED=0 GOARCH=$ARCH go build \
71-
-ldflags "-X 'github.com/vmware-tanzu/kpack-cli/pkg/rootcommand.Version=${{ env.VERSION }}' -X 'github.com/vmware-tanzu/kpack-cli/pkg/rootcommand.CommitSHA=$(git rev-parse --short HEAD)'" \
71+
-ldflags "-X 'github.com/buildpacks-community/kpack-cli/pkg/rootcommand.Version=${{ env.VERSION }}' -X 'github.com/buildpacks-community/kpack-cli/pkg/rootcommand.CommitSHA=$(git rev-parse --short HEAD)'" \
7272
-o kp-binaries/kp-$OS-$ARCH-${{ env.VERSION }} \
7373
./cmd/kp
7474
}

cmd/docs/main.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import (
1010

1111
"github.com/spf13/cobra/doc"
1212

13-
"github.com/vmware-tanzu/kpack-cli/pkg/rootcommand"
13+
"github.com/buildpacks-community/kpack-cli/pkg/rootcommand"
1414
)
1515

1616
func main() {

cmd/kp/main.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import (
88
"log"
99
"os"
1010

11-
"github.com/vmware-tanzu/kpack-cli/pkg/rootcommand"
11+
"github.com/buildpacks-community/kpack-cli/pkg/rootcommand"
1212
)
1313

1414
func main() {

docs/kp_clusterstack_create.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ The run and build images will be uploaded to the default repository.
1010
Therefore, you must have credentials to access the registry on your machine.
1111
Additionally, your cluster must have read access to the registry.
1212

13-
Env vars can be used for registry auth as described in https://github.com/vmware-tanzu/kpack-cli/blob/main/docs/auth.md
13+
Env vars can be used for registry auth as described in https://github.com/buildpacks-community/kpack-cli/blob/main/docs/auth.md
1414

1515
The default repository is read from the "default.repository" key in the "kp-config" ConfigMap within "kpack" namespace.
1616
The default service account used is read from the "default.repository.serviceaccount" key in the "kp-config" ConfigMap within "kpack" namespace.

docs/kp_clusterstack_patch.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Patches the run and build images of a specific cluster-scoped stack.
99
The run and build images will be uploaded to the the registry configured on your stack.
1010
Therefore, you must have credentials to access the registry on your machine.
1111

12-
Env vars can be used for registry auth as described in https://github.com/vmware-tanzu/kpack-cli/blob/main/docs/auth.md
12+
Env vars can be used for registry auth as described in https://github.com/buildpacks-community/kpack-cli/blob/main/docs/auth.md
1313

1414
The default repository is read from the "default.repository" key in the "kp-config" ConfigMap within "kpack" namespace.
1515
The default service account used is read from the "default.repository.serviceaccount" key in the "kp-config" ConfigMap within "kpack" namespace.

docs/kp_clusterstack_save.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ The run and build images will be uploaded to the default repository.
1010
Therefore, you must have credentials to access the registry on your machine.
1111
Additionally, your cluster must have read access to the registry.
1212

13-
Env vars can be used for registry auth as described in https://github.com/vmware-tanzu/kpack-cli/blob/main/docs/auth.md
13+
Env vars can be used for registry auth as described in https://github.com/buildpacks-community/kpack-cli/blob/main/docs/auth.md
1414

1515
The default repository is read from the "default.repository" key in the "kp-config" ConfigMap within "kpack" namespace.
1616
The default service account used is read from the "default.repository.serviceaccount" key in the "kp-config" ConfigMap within "kpack" namespace.

docs/kp_clusterstore_add.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Upload buildpackage(s) to a specific cluster-scoped buildpack store.
99
Buildpackages will be uploaded to the default repository.
1010
Therefore, you must have credentials to access the registry on your machine.
1111

12-
Env vars can be used for registry auth as described in https://github.com/vmware-tanzu/kpack-cli/blob/main/docs/auth.md
12+
Env vars can be used for registry auth as described in https://github.com/buildpacks-community/kpack-cli/blob/main/docs/auth.md
1313

1414
The default repository is read from the "default.repository" key in the "kp-config" ConfigMap within "kpack" namespace.
1515

docs/kp_clusterstore_create.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Create a cluster-scoped buildpack store by providing command line arguments.
99
Buildpackages will be uploaded to the default repository.
1010
Therefore, you must have credentials to access the registry on your machine.
1111

12-
Env vars can be used for registry auth as described in https://github.com/vmware-tanzu/kpack-cli/blob/main/docs/auth.md
12+
Env vars can be used for registry auth as described in https://github.com/buildpacks-community/kpack-cli/blob/main/docs/auth.md
1313

1414
This clusterstore will be created only if it does not exist.
1515
The default repository is read from the "default.repository" key in the "kp-config" ConfigMap within "kpack" namespace.

docs/kp_clusterstore_save.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Create or update a cluster-scoped buildpack store by providing command line argu
99
Buildpackages will be uploaded to the default repository.
1010
Therefore, you must have credentials to access the registry on your machine.
1111

12-
Env vars can be used for registry auth as described in https://github.com/vmware-tanzu/kpack-cli/blob/main/docs/auth.md
12+
Env vars can be used for registry auth as described in https://github.com/buildpacks-community/kpack-cli/blob/main/docs/auth.md
1313

1414
This clusterstore will be created only if it does not exist, otherwise it will be updated.
1515
The default repository is read from the "default.repository" key in the "kp-config" ConfigMap within "kpack" namespace.

docs/kp_image_create.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ Service bindings may be provided by using the "--service-binding" flag.
2929
For each service binding, supply the "--service-binding" flag followed by the <KIND>:<APIVERSION>:<NAME> or just <NAME> which will default the kind to "Secret".
3030
For example, "--service-binding my-secret-1 --service-binding Secret:v1:my-secret-2 --service-binding CustomProvisionedService:v1beta1:my-ps
3131

32-
Env vars can be used for registry auth as described in https://github.com/vmware-tanzu/kpack-cli/blob/main/docs/auth.md"
32+
Env vars can be used for registry auth as described in https://github.com/buildpacks-community/kpack-cli/blob/main/docs/auth.md"
3333

3434
```
3535
kp image create <name> --tag <tag> [flags]

docs/kp_image_patch.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ For example, "--service-binding my-secret-1 --service-binding CustomProvisionedS
3333

3434
The --cache-size flag can only be used to increase the size of the existing cache.
3535

36-
Env vars can be used for registry auth as described in https://github.com/vmware-tanzu/kpack-cli/blob/main/docs/auth.md
36+
Env vars can be used for registry auth as described in https://github.com/buildpacks-community/kpack-cli/blob/main/docs/auth.md
3737

3838

3939
```

docs/kp_image_save.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ Service bindings may be provided by using the "--service-binding" flag or delete
3131
For each service binding, supply the "--service-binding" flag followed by the <KIND>:<APIVERSION>:<NAME> or just <NAME> which will default the kind to "Secret".
3232
For example, "--service-binding my-secret-1 --service-binding CustomProvisionedService:v1beta1:my-ps --delete-service-binding Secret:v1:my-secret-2"
3333

34-
Env vars can be used for registry auth as described in https://github.com/vmware-tanzu/kpack-cli/blob/main/docs/auth.md
34+
Env vars can be used for registry auth as described in https://github.com/buildpacks-community/kpack-cli/blob/main/docs/auth.md
3535

3636

3737
```

docs/kp_import.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ This operation will create or update clusterstores, clusterstacks, and clusterbu
99
kp import will always attempt to upload the stack, store, and builder images, even if the resources have not changed.
1010
This can be used as a way to repair resources when registry images have been unexpectedly removed.
1111

12-
Env vars can be used for registry auth as described in https://github.com/vmware-tanzu/kpack-cli/blob/main/docs/auth.md
12+
Env vars can be used for registry auth as described in https://github.com/buildpacks-community/kpack-cli/blob/main/docs/auth.md
1313

1414
```
1515
kp import -f <filename> [flags]

docs/kp_lifecycle_patch.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Patch lifecycle image used by kpack
99
The Lifecycle image will be uploaded to the default repository.
1010
Therefore, you must have credentials to access the registry on your machine.
1111

12-
Env vars can be used for registry auth as described in https://github.com/vmware-tanzu/kpack-cli/blob/main/docs/auth.md
12+
Env vars can be used for registry auth as described in https://github.com/buildpacks-community/kpack-cli/blob/main/docs/auth.md
1313

1414
The default repository is read from the "default.repository" key of the "kp-config" ConfigMap within "kpack" namespace.
1515

go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module github.com/vmware-tanzu/kpack-cli
1+
module github.com/buildpacks-community/kpack-cli
22

33
go 1.20
44

pkg/archive/zip_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ import (
1616
"github.com/stretchr/testify/assert"
1717
"github.com/stretchr/testify/require"
1818

19-
"github.com/vmware-tanzu/kpack-cli/pkg/archive"
19+
"github.com/buildpacks-community/kpack-cli/pkg/archive"
2020
)
2121

2222
func TestZip(t *testing.T) {

pkg/buildpackage/uploader.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import (
1212
"github.com/google/go-containerregistry/pkg/v1/layout"
1313
"github.com/pkg/errors"
1414

15-
"github.com/vmware-tanzu/kpack-cli/pkg/archive"
15+
"github.com/buildpacks-community/kpack-cli/pkg/archive"
1616
)
1717

1818
type Relocator interface {

pkg/buildpackage/uploader_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import (
1313
"github.com/sclevine/spec"
1414
"github.com/stretchr/testify/require"
1515

16-
"github.com/vmware-tanzu/kpack-cli/pkg/registry/fakes"
16+
"github.com/buildpacks-community/kpack-cli/pkg/registry/fakes"
1717
)
1818

1919
func TestBuildpackageUploader(t *testing.T) {

pkg/clusterstack/factory.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ import (
88
"github.com/pivotal/kpack/pkg/apis/build/v1alpha2"
99
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
1010

11-
"github.com/vmware-tanzu/kpack-cli/pkg/config"
12-
"github.com/vmware-tanzu/kpack-cli/pkg/registry"
13-
"github.com/vmware-tanzu/kpack-cli/pkg/stackimage"
11+
"github.com/buildpacks-community/kpack-cli/pkg/config"
12+
"github.com/buildpacks-community/kpack-cli/pkg/registry"
13+
"github.com/buildpacks-community/kpack-cli/pkg/stackimage"
1414
)
1515

1616
type Uploader interface {

pkg/clusterstore/factory.go

+4-4
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@ import (
1313
"github.com/pkg/errors"
1414
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
1515

16-
"github.com/vmware-tanzu/kpack-cli/pkg/buildpackage"
17-
"github.com/vmware-tanzu/kpack-cli/pkg/config"
18-
"github.com/vmware-tanzu/kpack-cli/pkg/k8s"
19-
"github.com/vmware-tanzu/kpack-cli/pkg/registry"
16+
"github.com/buildpacks-community/kpack-cli/pkg/buildpackage"
17+
"github.com/buildpacks-community/kpack-cli/pkg/config"
18+
"github.com/buildpacks-community/kpack-cli/pkg/k8s"
19+
"github.com/buildpacks-community/kpack-cli/pkg/registry"
2020
)
2121

2222
type BuildpackageUploader interface {

pkg/commands/args_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import (
99

1010
"github.com/spf13/cobra"
1111

12-
"github.com/vmware-tanzu/kpack-cli/pkg/commands"
12+
"github.com/buildpacks-community/kpack-cli/pkg/commands"
1313
)
1414

1515
func TestExactArgsWithUsage(t *testing.T) {

pkg/commands/build/list.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ import (
1111
"github.com/spf13/cobra"
1212
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
1313

14-
"github.com/vmware-tanzu/kpack-cli/pkg/build"
15-
"github.com/vmware-tanzu/kpack-cli/pkg/commands"
16-
"github.com/vmware-tanzu/kpack-cli/pkg/k8s"
14+
"github.com/buildpacks-community/kpack-cli/pkg/build"
15+
"github.com/buildpacks-community/kpack-cli/pkg/commands"
16+
"github.com/buildpacks-community/kpack-cli/pkg/k8s"
1717
)
1818

1919
func NewListCommand(clientSetProvider k8s.ClientSetProvider) *cobra.Command {

pkg/commands/build/list_test.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ import (
1010
"github.com/sclevine/spec"
1111
"github.com/spf13/cobra"
1212

13-
"github.com/vmware-tanzu/kpack-cli/pkg/commands/build"
14-
"github.com/vmware-tanzu/kpack-cli/pkg/testhelpers"
13+
"github.com/buildpacks-community/kpack-cli/pkg/commands/build"
14+
"github.com/buildpacks-community/kpack-cli/pkg/testhelpers"
1515
)
1616

1717
func TestBuildListCommand(t *testing.T) {

pkg/commands/build/logs.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ import (
1313
"github.com/spf13/cobra"
1414
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
1515

16-
"github.com/vmware-tanzu/kpack-cli/pkg/build"
17-
"github.com/vmware-tanzu/kpack-cli/pkg/commands"
18-
"github.com/vmware-tanzu/kpack-cli/pkg/k8s"
16+
"github.com/buildpacks-community/kpack-cli/pkg/build"
17+
"github.com/buildpacks-community/kpack-cli/pkg/commands"
18+
"github.com/buildpacks-community/kpack-cli/pkg/k8s"
1919
)
2020

2121
func NewLogsCommand(clientSetProvider k8s.ClientSetProvider) *cobra.Command {

pkg/commands/build/logs_test.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ import (
1010
"github.com/sclevine/spec"
1111
"github.com/spf13/cobra"
1212

13-
"github.com/vmware-tanzu/kpack-cli/pkg/commands/build"
14-
"github.com/vmware-tanzu/kpack-cli/pkg/testhelpers"
13+
"github.com/buildpacks-community/kpack-cli/pkg/commands/build"
14+
"github.com/buildpacks-community/kpack-cli/pkg/testhelpers"
1515
)
1616

1717
func TestBuildLogsCommand(t *testing.T) {

pkg/commands/build/status.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@ import (
1818
"github.com/spf13/cobra"
1919
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
2020

21-
"github.com/vmware-tanzu/kpack-cli/pkg/build"
22-
"github.com/vmware-tanzu/kpack-cli/pkg/commands"
23-
"github.com/vmware-tanzu/kpack-cli/pkg/k8s"
21+
"github.com/buildpacks-community/kpack-cli/pkg/build"
22+
"github.com/buildpacks-community/kpack-cli/pkg/commands"
23+
"github.com/buildpacks-community/kpack-cli/pkg/k8s"
2424
)
2525

2626
func NewStatusCommand(clientSetProvider k8s.ClientSetProvider) *cobra.Command {

pkg/commands/build/status_test.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@ import (
1919
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
2020
"k8s.io/apimachinery/pkg/runtime"
2121

22-
"github.com/vmware-tanzu/kpack-cli/pkg/commands"
23-
"github.com/vmware-tanzu/kpack-cli/pkg/commands/build"
24-
"github.com/vmware-tanzu/kpack-cli/pkg/testhelpers"
22+
"github.com/buildpacks-community/kpack-cli/pkg/commands"
23+
"github.com/buildpacks-community/kpack-cli/pkg/commands/build"
24+
"github.com/buildpacks-community/kpack-cli/pkg/testhelpers"
2525
)
2626

2727
func TestBuildStatusCommand(t *testing.T) {

pkg/commands/builder/create.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ import (
1515
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
1616
"k8s.io/client-go/dynamic"
1717

18-
"github.com/vmware-tanzu/kpack-cli/pkg/builder"
19-
"github.com/vmware-tanzu/kpack-cli/pkg/commands"
20-
"github.com/vmware-tanzu/kpack-cli/pkg/k8s"
18+
"github.com/buildpacks-community/kpack-cli/pkg/builder"
19+
"github.com/buildpacks-community/kpack-cli/pkg/commands"
20+
"github.com/buildpacks-community/kpack-cli/pkg/k8s"
2121
)
2222

2323
const (

pkg/commands/builder/create_test.go

+5-5
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,11 @@ import (
1919
"k8s.io/apimachinery/pkg/runtime"
2020
"k8s.io/client-go/dynamic"
2121

22-
"github.com/vmware-tanzu/kpack-cli/pkg/commands"
23-
buildercmds "github.com/vmware-tanzu/kpack-cli/pkg/commands/builder"
24-
commandsfakes "github.com/vmware-tanzu/kpack-cli/pkg/commands/fakes"
25-
"github.com/vmware-tanzu/kpack-cli/pkg/k8s"
26-
"github.com/vmware-tanzu/kpack-cli/pkg/testhelpers"
22+
"github.com/buildpacks-community/kpack-cli/pkg/commands"
23+
buildercmds "github.com/buildpacks-community/kpack-cli/pkg/commands/builder"
24+
commandsfakes "github.com/buildpacks-community/kpack-cli/pkg/commands/fakes"
25+
"github.com/buildpacks-community/kpack-cli/pkg/k8s"
26+
"github.com/buildpacks-community/kpack-cli/pkg/testhelpers"
2727
)
2828

2929
func TestBuilderCreateCommand(t *testing.T) {

pkg/commands/builder/delete.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ import (
99
"github.com/spf13/cobra"
1010
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
1111

12-
"github.com/vmware-tanzu/kpack-cli/pkg/commands"
13-
"github.com/vmware-tanzu/kpack-cli/pkg/k8s"
12+
"github.com/buildpacks-community/kpack-cli/pkg/commands"
13+
"github.com/buildpacks-community/kpack-cli/pkg/k8s"
1414
)
1515

1616
func NewDeleteCommand(clientSetProvider k8s.ClientSetProvider) *cobra.Command {

pkg/commands/builder/delete_test.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ import (
1414
"k8s.io/apimachinery/pkg/runtime"
1515
clientgotesting "k8s.io/client-go/testing"
1616

17-
"github.com/vmware-tanzu/kpack-cli/pkg/commands/builder"
18-
"github.com/vmware-tanzu/kpack-cli/pkg/testhelpers"
17+
"github.com/buildpacks-community/kpack-cli/pkg/commands/builder"
18+
"github.com/buildpacks-community/kpack-cli/pkg/testhelpers"
1919
)
2020

2121
func TestBuilderDeleteCommand(t *testing.T) {

pkg/commands/builder/list.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ import (
1212
"github.com/spf13/cobra"
1313
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
1414

15-
"github.com/vmware-tanzu/kpack-cli/pkg/commands"
16-
"github.com/vmware-tanzu/kpack-cli/pkg/k8s"
15+
"github.com/buildpacks-community/kpack-cli/pkg/commands"
16+
"github.com/buildpacks-community/kpack-cli/pkg/k8s"
1717
)
1818

1919
func NewListCommand(clientSetProvider k8s.ClientSetProvider) *cobra.Command {

pkg/commands/builder/list_test.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ import (
1515
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
1616
"k8s.io/apimachinery/pkg/runtime"
1717

18-
"github.com/vmware-tanzu/kpack-cli/pkg/commands/builder"
19-
"github.com/vmware-tanzu/kpack-cli/pkg/testhelpers"
18+
"github.com/buildpacks-community/kpack-cli/pkg/commands/builder"
19+
"github.com/buildpacks-community/kpack-cli/pkg/testhelpers"
2020
)
2121

2222
func TestBuilderListCommand(t *testing.T) {

pkg/commands/builder/patch.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ import (
1414
"k8s.io/apimachinery/pkg/types"
1515
"k8s.io/client-go/dynamic"
1616

17-
"github.com/vmware-tanzu/kpack-cli/pkg/builder"
18-
"github.com/vmware-tanzu/kpack-cli/pkg/commands"
19-
"github.com/vmware-tanzu/kpack-cli/pkg/k8s"
17+
"github.com/buildpacks-community/kpack-cli/pkg/builder"
18+
"github.com/buildpacks-community/kpack-cli/pkg/commands"
19+
"github.com/buildpacks-community/kpack-cli/pkg/k8s"
2020
)
2121

2222
func NewPatchCommand(clientSetProvider k8s.ClientSetProvider, newWaiter func(dynamic.Interface) commands.ResourceWaiter) *cobra.Command {

pkg/commands/builder/patch_test.go

+5-5
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,11 @@ import (
1717
"k8s.io/apimachinery/pkg/runtime"
1818
"k8s.io/client-go/dynamic"
1919

20-
"github.com/vmware-tanzu/kpack-cli/pkg/commands"
21-
buildercmds "github.com/vmware-tanzu/kpack-cli/pkg/commands/builder"
22-
commandsfakes "github.com/vmware-tanzu/kpack-cli/pkg/commands/fakes"
23-
"github.com/vmware-tanzu/kpack-cli/pkg/k8s"
24-
"github.com/vmware-tanzu/kpack-cli/pkg/testhelpers"
20+
"github.com/buildpacks-community/kpack-cli/pkg/commands"
21+
buildercmds "github.com/buildpacks-community/kpack-cli/pkg/commands/builder"
22+
commandsfakes "github.com/buildpacks-community/kpack-cli/pkg/commands/fakes"
23+
"github.com/buildpacks-community/kpack-cli/pkg/k8s"
24+
"github.com/buildpacks-community/kpack-cli/pkg/testhelpers"
2525
)
2626

2727
func TestBuilderPatchCommand(t *testing.T) {

pkg/commands/builder/save.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ import (
1010
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
1111
"k8s.io/client-go/dynamic"
1212

13-
"github.com/vmware-tanzu/kpack-cli/pkg/commands"
14-
"github.com/vmware-tanzu/kpack-cli/pkg/k8s"
13+
"github.com/buildpacks-community/kpack-cli/pkg/commands"
14+
"github.com/buildpacks-community/kpack-cli/pkg/k8s"
1515
)
1616

1717
func NewSaveCommand(clientSetProvider k8s.ClientSetProvider, newWaiter func(dynamic.Interface) commands.ResourceWaiter) *cobra.Command {

pkg/commands/builder/save_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import (
88

99
"github.com/sclevine/spec"
1010

11-
buildercmds "github.com/vmware-tanzu/kpack-cli/pkg/commands/builder"
11+
buildercmds "github.com/buildpacks-community/kpack-cli/pkg/commands/builder"
1212
)
1313

1414
func TestBuilderSaveCommand(t *testing.T) {

0 commit comments

Comments
 (0)