diff --git a/README.md b/README.md index 5dcac02d..31538366 100644 --- a/README.md +++ b/README.md @@ -42,7 +42,7 @@ It is expected that kubectl and kn be configured to connect to a kubernetes clus * Kourier * Cert-manager -see https://github.com/lkingland/config for cluster setup and configuration details. +see https://github.com/boson-project/config for cluster setup and configuration details. ## Usage diff --git a/appsody/initializer.go b/appsody/initializer.go index 625b0376..8a8b5bf2 100644 --- a/appsody/initializer.go +++ b/appsody/initializer.go @@ -8,7 +8,7 @@ import ( "os/exec" "strings" - "github.com/lkingland/faas/k8s" + "github.com/boson-project/faas/k8s" ) // NameMappings are short-name to repository full name mappings, diff --git a/appsody/initializer_test.go b/appsody/initializer_test.go index e83abec2..77753003 100644 --- a/appsody/initializer_test.go +++ b/appsody/initializer_test.go @@ -6,7 +6,7 @@ import ( "os" "testing" - "github.com/lkingland/faas/appsody" + "github.com/boson-project/faas/appsody" ) // Enabling Appsody Binary Integration Tests diff --git a/client/client_test.go b/client/client_test.go index 595d8aca..a771b11e 100644 --- a/client/client_test.go +++ b/client/client_test.go @@ -5,8 +5,8 @@ import ( "path/filepath" "testing" - "github.com/lkingland/faas/client" - "github.com/lkingland/faas/client/mock" + "github.com/boson-project/faas/client" + "github.com/boson-project/faas/client/mock" ) // TestNew ensures that instantiation succeeds or fails as expected. diff --git a/cmd/create.go b/cmd/create.go index 57f7668f..f85bff6d 100644 --- a/cmd/create.go +++ b/cmd/create.go @@ -6,10 +6,10 @@ import ( "github.com/ory/viper" "github.com/spf13/cobra" - "github.com/lkingland/faas/appsody" - "github.com/lkingland/faas/client" - "github.com/lkingland/faas/docker" - "github.com/lkingland/faas/kubectl" + "github.com/boson-project/faas/appsody" + "github.com/boson-project/faas/client" + "github.com/boson-project/faas/docker" + "github.com/boson-project/faas/kubectl" ) func init() { diff --git a/cmd/delete.go b/cmd/delete.go index 8379565d..4b3b3f53 100644 --- a/cmd/delete.go +++ b/cmd/delete.go @@ -1,8 +1,8 @@ package cmd import ( - "github.com/lkingland/faas/client" - "github.com/lkingland/faas/kubectl" + "github.com/boson-project/faas/client" + "github.com/boson-project/faas/kubectl" "github.com/ory/viper" "github.com/spf13/cobra" ) diff --git a/cmd/list.go b/cmd/list.go index 7d5ed46c..e09ce884 100644 --- a/cmd/list.go +++ b/cmd/list.go @@ -3,8 +3,8 @@ package cmd import ( "fmt" - "github.com/lkingland/faas/client" - "github.com/lkingland/faas/knative" + "github.com/boson-project/faas/client" + "github.com/boson-project/faas/knative" "github.com/ory/viper" "github.com/spf13/cobra" ) diff --git a/cmd/root_test.go b/cmd/root_test.go index c13714b5..6767e357 100644 --- a/cmd/root_test.go +++ b/cmd/root_test.go @@ -3,7 +3,7 @@ package cmd_test import ( "testing" - "github.com/lkingland/faas/cmd" + "github.com/boson-project/faas/cmd" ) // TestNewRoot ensures that NewRoot returns a non-nil command with at least a name that diff --git a/cmd/run.go b/cmd/run.go index 02ababf2..22ec85a8 100644 --- a/cmd/run.go +++ b/cmd/run.go @@ -4,8 +4,8 @@ import ( "github.com/ory/viper" "github.com/spf13/cobra" - "github.com/lkingland/faas/appsody" - "github.com/lkingland/faas/client" + "github.com/boson-project/faas/appsody" + "github.com/boson-project/faas/client" ) func init() { diff --git a/cmd/update.go b/cmd/update.go index f9baf44e..f2af0485 100644 --- a/cmd/update.go +++ b/cmd/update.go @@ -6,10 +6,10 @@ import ( "github.com/ory/viper" "github.com/spf13/cobra" - "github.com/lkingland/faas/appsody" - "github.com/lkingland/faas/client" - "github.com/lkingland/faas/docker" - "github.com/lkingland/faas/kn" + "github.com/boson-project/faas/appsody" + "github.com/boson-project/faas/client" + "github.com/boson-project/faas/docker" + "github.com/boson-project/faas/kn" ) func init() { diff --git a/go.mod b/go.mod index 33851f51..ab7d363d 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module github.com/lkingland/faas +module github.com/boson-project/faas go 1.13 diff --git a/kn/updater.go b/kn/updater.go index c9a96caa..20b07cef 100644 --- a/kn/updater.go +++ b/kn/updater.go @@ -8,7 +8,7 @@ import ( "os/exec" "time" - "github.com/lkingland/faas/k8s" + "github.com/boson-project/faas/k8s" ) // Updater implemented using the kn binary. diff --git a/kubectl/deployer.go b/kubectl/deployer.go index de09c432..d0685e47 100644 --- a/kubectl/deployer.go +++ b/kubectl/deployer.go @@ -11,7 +11,7 @@ import ( "os/exec" "strings" - "github.com/lkingland/faas/k8s" + "github.com/boson-project/faas/k8s" ) const service = ` diff --git a/kubectl/remover.go b/kubectl/remover.go index f37a4358..e83e9da1 100644 --- a/kubectl/remover.go +++ b/kubectl/remover.go @@ -7,7 +7,7 @@ import ( "os" "os/exec" - "github.com/lkingland/faas/k8s" + "github.com/boson-project/faas/k8s" ) // Remover implemented using the kubectl binary. diff --git a/main.go b/main.go index b63dd94c..4d0b4936 100644 --- a/main.go +++ b/main.go @@ -1,6 +1,6 @@ package main -import "github.com/lkingland/faas/cmd" +import "github.com/boson-project/faas/cmd" func main() { cmd.Execute()