Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Change module to github.com/buildpacks-community/kpack-cli #403

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ jobs:
ARCH=$2
echo "Building for $OS-$ARCH"
GOOS=$OS CGO_ENABLED=0 GOARCH=$ARCH go build \
-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)'" \
-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)'" \
-o kp-binaries/kp-$OS-$ARCH-${{ env.VERSION }} \
./cmd/kp
}
Expand Down
2 changes: 1 addition & 1 deletion cmd/docs/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import (

"github.com/spf13/cobra/doc"

"github.com/vmware-tanzu/kpack-cli/pkg/rootcommand"
"github.com/buildpacks-community/kpack-cli/pkg/rootcommand"
)

func main() {
Expand Down
2 changes: 1 addition & 1 deletion cmd/kp/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
"log"
"os"

"github.com/vmware-tanzu/kpack-cli/pkg/rootcommand"
"github.com/buildpacks-community/kpack-cli/pkg/rootcommand"
)

func main() {
Expand Down
2 changes: 1 addition & 1 deletion docs/kp_clusterstack_create.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ The run and build images will be uploaded to the default repository.
Therefore, you must have credentials to access the registry on your machine.
Additionally, your cluster must have read access to the registry.

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

The default repository is read from the "default.repository" key in the "kp-config" ConfigMap within "kpack" namespace.
The default service account used is read from the "default.repository.serviceaccount" key in the "kp-config" ConfigMap within "kpack" namespace.
Expand Down
2 changes: 1 addition & 1 deletion docs/kp_clusterstack_patch.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Patches the run and build images of a specific cluster-scoped stack.
The run and build images will be uploaded to the the registry configured on your stack.
Therefore, you must have credentials to access the registry on your machine.

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

The default repository is read from the "default.repository" key in the "kp-config" ConfigMap within "kpack" namespace.
The default service account used is read from the "default.repository.serviceaccount" key in the "kp-config" ConfigMap within "kpack" namespace.
Expand Down
2 changes: 1 addition & 1 deletion docs/kp_clusterstack_save.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ The run and build images will be uploaded to the default repository.
Therefore, you must have credentials to access the registry on your machine.
Additionally, your cluster must have read access to the registry.

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

The default repository is read from the "default.repository" key in the "kp-config" ConfigMap within "kpack" namespace.
The default service account used is read from the "default.repository.serviceaccount" key in the "kp-config" ConfigMap within "kpack" namespace.
Expand Down
2 changes: 1 addition & 1 deletion docs/kp_clusterstore_add.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Upload buildpackage(s) to a specific cluster-scoped buildpack store.
Buildpackages will be uploaded to the default repository.
Therefore, you must have credentials to access the registry on your machine.

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

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

Expand Down
2 changes: 1 addition & 1 deletion docs/kp_clusterstore_create.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Create a cluster-scoped buildpack store by providing command line arguments.
Buildpackages will be uploaded to the default repository.
Therefore, you must have credentials to access the registry on your machine.

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

This clusterstore will be created only if it does not exist.
The default repository is read from the "default.repository" key in the "kp-config" ConfigMap within "kpack" namespace.
Expand Down
2 changes: 1 addition & 1 deletion docs/kp_clusterstore_save.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Create or update a cluster-scoped buildpack store by providing command line argu
Buildpackages will be uploaded to the default repository.
Therefore, you must have credentials to access the registry on your machine.

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

This clusterstore will be created only if it does not exist, otherwise it will be updated.
The default repository is read from the "default.repository" key in the "kp-config" ConfigMap within "kpack" namespace.
Expand Down
2 changes: 1 addition & 1 deletion docs/kp_image_create.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ Service bindings may be provided by using the "--service-binding" flag.
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".
For example, "--service-binding my-secret-1 --service-binding Secret:v1:my-secret-2 --service-binding CustomProvisionedService:v1beta1:my-ps

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

```
kp image create <name> --tag <tag> [flags]
Expand Down
2 changes: 1 addition & 1 deletion docs/kp_image_patch.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ For example, "--service-binding my-secret-1 --service-binding CustomProvisionedS

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

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


```
Expand Down
2 changes: 1 addition & 1 deletion docs/kp_image_save.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ Service bindings may be provided by using the "--service-binding" flag or delete
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".
For example, "--service-binding my-secret-1 --service-binding CustomProvisionedService:v1beta1:my-ps --delete-service-binding Secret:v1:my-secret-2"

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


```
Expand Down
2 changes: 1 addition & 1 deletion docs/kp_import.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ This operation will create or update clusterstores, clusterstacks, and clusterbu
kp import will always attempt to upload the stack, store, and builder images, even if the resources have not changed.
This can be used as a way to repair resources when registry images have been unexpectedly removed.

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

```
kp import -f <filename> [flags]
Expand Down
2 changes: 1 addition & 1 deletion docs/kp_lifecycle_patch.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Patch lifecycle image used by kpack
The Lifecycle image will be uploaded to the default repository.
Therefore, you must have credentials to access the registry on your machine.

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

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

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/vmware-tanzu/kpack-cli
module github.com/buildpacks-community/kpack-cli

go 1.20

Expand Down
2 changes: 1 addition & 1 deletion pkg/archive/zip_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ import (
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"

"github.com/vmware-tanzu/kpack-cli/pkg/archive"
"github.com/buildpacks-community/kpack-cli/pkg/archive"
)

func TestZip(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion pkg/buildpackage/uploader.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import (
"github.com/google/go-containerregistry/pkg/v1/layout"
"github.com/pkg/errors"

"github.com/vmware-tanzu/kpack-cli/pkg/archive"
"github.com/buildpacks-community/kpack-cli/pkg/archive"
)

type Relocator interface {
Expand Down
2 changes: 1 addition & 1 deletion pkg/buildpackage/uploader_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import (
"github.com/sclevine/spec"
"github.com/stretchr/testify/require"

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

func TestBuildpackageUploader(t *testing.T) {
Expand Down
6 changes: 3 additions & 3 deletions pkg/clusterstack/factory.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ import (
"github.com/pivotal/kpack/pkg/apis/build/v1alpha2"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"

"github.com/vmware-tanzu/kpack-cli/pkg/config"
"github.com/vmware-tanzu/kpack-cli/pkg/registry"
"github.com/vmware-tanzu/kpack-cli/pkg/stackimage"
"github.com/buildpacks-community/kpack-cli/pkg/config"
"github.com/buildpacks-community/kpack-cli/pkg/registry"
"github.com/buildpacks-community/kpack-cli/pkg/stackimage"
)

type Uploader interface {
Expand Down
8 changes: 4 additions & 4 deletions pkg/clusterstore/factory.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ import (
"github.com/pkg/errors"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"

"github.com/vmware-tanzu/kpack-cli/pkg/buildpackage"
"github.com/vmware-tanzu/kpack-cli/pkg/config"
"github.com/vmware-tanzu/kpack-cli/pkg/k8s"
"github.com/vmware-tanzu/kpack-cli/pkg/registry"
"github.com/buildpacks-community/kpack-cli/pkg/buildpackage"
"github.com/buildpacks-community/kpack-cli/pkg/config"
"github.com/buildpacks-community/kpack-cli/pkg/k8s"
"github.com/buildpacks-community/kpack-cli/pkg/registry"
)

type BuildpackageUploader interface {
Expand Down
2 changes: 1 addition & 1 deletion pkg/commands/args_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import (

"github.com/spf13/cobra"

"github.com/vmware-tanzu/kpack-cli/pkg/commands"
"github.com/buildpacks-community/kpack-cli/pkg/commands"
)

func TestExactArgsWithUsage(t *testing.T) {
Expand Down
6 changes: 3 additions & 3 deletions pkg/commands/build/list.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ import (
"github.com/spf13/cobra"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"

"github.com/vmware-tanzu/kpack-cli/pkg/build"
"github.com/vmware-tanzu/kpack-cli/pkg/commands"
"github.com/vmware-tanzu/kpack-cli/pkg/k8s"
"github.com/buildpacks-community/kpack-cli/pkg/build"
"github.com/buildpacks-community/kpack-cli/pkg/commands"
"github.com/buildpacks-community/kpack-cli/pkg/k8s"
)

func NewListCommand(clientSetProvider k8s.ClientSetProvider) *cobra.Command {
Expand Down
4 changes: 2 additions & 2 deletions pkg/commands/build/list_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ import (
"github.com/sclevine/spec"
"github.com/spf13/cobra"

"github.com/vmware-tanzu/kpack-cli/pkg/commands/build"
"github.com/vmware-tanzu/kpack-cli/pkg/testhelpers"
"github.com/buildpacks-community/kpack-cli/pkg/commands/build"
"github.com/buildpacks-community/kpack-cli/pkg/testhelpers"
)

func TestBuildListCommand(t *testing.T) {
Expand Down
6 changes: 3 additions & 3 deletions pkg/commands/build/logs.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ import (
"github.com/spf13/cobra"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"

"github.com/vmware-tanzu/kpack-cli/pkg/build"
"github.com/vmware-tanzu/kpack-cli/pkg/commands"
"github.com/vmware-tanzu/kpack-cli/pkg/k8s"
"github.com/buildpacks-community/kpack-cli/pkg/build"
"github.com/buildpacks-community/kpack-cli/pkg/commands"
"github.com/buildpacks-community/kpack-cli/pkg/k8s"
)

func NewLogsCommand(clientSetProvider k8s.ClientSetProvider) *cobra.Command {
Expand Down
4 changes: 2 additions & 2 deletions pkg/commands/build/logs_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ import (
"github.com/sclevine/spec"
"github.com/spf13/cobra"

"github.com/vmware-tanzu/kpack-cli/pkg/commands/build"
"github.com/vmware-tanzu/kpack-cli/pkg/testhelpers"
"github.com/buildpacks-community/kpack-cli/pkg/commands/build"
"github.com/buildpacks-community/kpack-cli/pkg/testhelpers"
)

func TestBuildLogsCommand(t *testing.T) {
Expand Down
6 changes: 3 additions & 3 deletions pkg/commands/build/status.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@ import (
"github.com/spf13/cobra"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"

"github.com/vmware-tanzu/kpack-cli/pkg/build"
"github.com/vmware-tanzu/kpack-cli/pkg/commands"
"github.com/vmware-tanzu/kpack-cli/pkg/k8s"
"github.com/buildpacks-community/kpack-cli/pkg/build"
"github.com/buildpacks-community/kpack-cli/pkg/commands"
"github.com/buildpacks-community/kpack-cli/pkg/k8s"
)

func NewStatusCommand(clientSetProvider k8s.ClientSetProvider) *cobra.Command {
Expand Down
6 changes: 3 additions & 3 deletions pkg/commands/build/status_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ import (
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
"k8s.io/apimachinery/pkg/runtime"

"github.com/vmware-tanzu/kpack-cli/pkg/commands"
"github.com/vmware-tanzu/kpack-cli/pkg/commands/build"
"github.com/vmware-tanzu/kpack-cli/pkg/testhelpers"
"github.com/buildpacks-community/kpack-cli/pkg/commands"
"github.com/buildpacks-community/kpack-cli/pkg/commands/build"
"github.com/buildpacks-community/kpack-cli/pkg/testhelpers"
)

func TestBuildStatusCommand(t *testing.T) {
Expand Down
6 changes: 3 additions & 3 deletions pkg/commands/builder/create.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ import (
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
"k8s.io/client-go/dynamic"

"github.com/vmware-tanzu/kpack-cli/pkg/builder"
"github.com/vmware-tanzu/kpack-cli/pkg/commands"
"github.com/vmware-tanzu/kpack-cli/pkg/k8s"
"github.com/buildpacks-community/kpack-cli/pkg/builder"
"github.com/buildpacks-community/kpack-cli/pkg/commands"
"github.com/buildpacks-community/kpack-cli/pkg/k8s"
)

const (
Expand Down
10 changes: 5 additions & 5 deletions pkg/commands/builder/create_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,11 @@ import (
"k8s.io/apimachinery/pkg/runtime"
"k8s.io/client-go/dynamic"

"github.com/vmware-tanzu/kpack-cli/pkg/commands"
buildercmds "github.com/vmware-tanzu/kpack-cli/pkg/commands/builder"
commandsfakes "github.com/vmware-tanzu/kpack-cli/pkg/commands/fakes"
"github.com/vmware-tanzu/kpack-cli/pkg/k8s"
"github.com/vmware-tanzu/kpack-cli/pkg/testhelpers"
"github.com/buildpacks-community/kpack-cli/pkg/commands"
buildercmds "github.com/buildpacks-community/kpack-cli/pkg/commands/builder"
commandsfakes "github.com/buildpacks-community/kpack-cli/pkg/commands/fakes"
"github.com/buildpacks-community/kpack-cli/pkg/k8s"
"github.com/buildpacks-community/kpack-cli/pkg/testhelpers"
)

func TestBuilderCreateCommand(t *testing.T) {
Expand Down
4 changes: 2 additions & 2 deletions pkg/commands/builder/delete.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ import (
"github.com/spf13/cobra"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"

"github.com/vmware-tanzu/kpack-cli/pkg/commands"
"github.com/vmware-tanzu/kpack-cli/pkg/k8s"
"github.com/buildpacks-community/kpack-cli/pkg/commands"
"github.com/buildpacks-community/kpack-cli/pkg/k8s"
)

func NewDeleteCommand(clientSetProvider k8s.ClientSetProvider) *cobra.Command {
Expand Down
4 changes: 2 additions & 2 deletions pkg/commands/builder/delete_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ import (
"k8s.io/apimachinery/pkg/runtime"
clientgotesting "k8s.io/client-go/testing"

"github.com/vmware-tanzu/kpack-cli/pkg/commands/builder"
"github.com/vmware-tanzu/kpack-cli/pkg/testhelpers"
"github.com/buildpacks-community/kpack-cli/pkg/commands/builder"
"github.com/buildpacks-community/kpack-cli/pkg/testhelpers"
)

func TestBuilderDeleteCommand(t *testing.T) {
Expand Down
4 changes: 2 additions & 2 deletions pkg/commands/builder/list.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ import (
"github.com/spf13/cobra"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"

"github.com/vmware-tanzu/kpack-cli/pkg/commands"
"github.com/vmware-tanzu/kpack-cli/pkg/k8s"
"github.com/buildpacks-community/kpack-cli/pkg/commands"
"github.com/buildpacks-community/kpack-cli/pkg/k8s"
)

func NewListCommand(clientSetProvider k8s.ClientSetProvider) *cobra.Command {
Expand Down
4 changes: 2 additions & 2 deletions pkg/commands/builder/list_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ import (
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
"k8s.io/apimachinery/pkg/runtime"

"github.com/vmware-tanzu/kpack-cli/pkg/commands/builder"
"github.com/vmware-tanzu/kpack-cli/pkg/testhelpers"
"github.com/buildpacks-community/kpack-cli/pkg/commands/builder"
"github.com/buildpacks-community/kpack-cli/pkg/testhelpers"
)

func TestBuilderListCommand(t *testing.T) {
Expand Down
6 changes: 3 additions & 3 deletions pkg/commands/builder/patch.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ import (
"k8s.io/apimachinery/pkg/types"
"k8s.io/client-go/dynamic"

"github.com/vmware-tanzu/kpack-cli/pkg/builder"
"github.com/vmware-tanzu/kpack-cli/pkg/commands"
"github.com/vmware-tanzu/kpack-cli/pkg/k8s"
"github.com/buildpacks-community/kpack-cli/pkg/builder"
"github.com/buildpacks-community/kpack-cli/pkg/commands"
"github.com/buildpacks-community/kpack-cli/pkg/k8s"
)

func NewPatchCommand(clientSetProvider k8s.ClientSetProvider, newWaiter func(dynamic.Interface) commands.ResourceWaiter) *cobra.Command {
Expand Down
10 changes: 5 additions & 5 deletions pkg/commands/builder/patch_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,11 @@ import (
"k8s.io/apimachinery/pkg/runtime"
"k8s.io/client-go/dynamic"

"github.com/vmware-tanzu/kpack-cli/pkg/commands"
buildercmds "github.com/vmware-tanzu/kpack-cli/pkg/commands/builder"
commandsfakes "github.com/vmware-tanzu/kpack-cli/pkg/commands/fakes"
"github.com/vmware-tanzu/kpack-cli/pkg/k8s"
"github.com/vmware-tanzu/kpack-cli/pkg/testhelpers"
"github.com/buildpacks-community/kpack-cli/pkg/commands"
buildercmds "github.com/buildpacks-community/kpack-cli/pkg/commands/builder"
commandsfakes "github.com/buildpacks-community/kpack-cli/pkg/commands/fakes"
"github.com/buildpacks-community/kpack-cli/pkg/k8s"
"github.com/buildpacks-community/kpack-cli/pkg/testhelpers"
)

func TestBuilderPatchCommand(t *testing.T) {
Expand Down
4 changes: 2 additions & 2 deletions pkg/commands/builder/save.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ import (
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
"k8s.io/client-go/dynamic"

"github.com/vmware-tanzu/kpack-cli/pkg/commands"
"github.com/vmware-tanzu/kpack-cli/pkg/k8s"
"github.com/buildpacks-community/kpack-cli/pkg/commands"
"github.com/buildpacks-community/kpack-cli/pkg/k8s"
)

func NewSaveCommand(clientSetProvider k8s.ClientSetProvider, newWaiter func(dynamic.Interface) commands.ResourceWaiter) *cobra.Command {
Expand Down
2 changes: 1 addition & 1 deletion pkg/commands/builder/save_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (

"github.com/sclevine/spec"

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

func TestBuilderSaveCommand(t *testing.T) {
Expand Down
Loading
Loading