Rename packages

Needed since the project has been moved.
This commit is contained in:
Matej Vasek 2020-04-27 16:45:46 +02:00
parent 3224123222
commit 09cb2d5425
15 changed files with 25 additions and 25 deletions

View File

@ -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

View File

@ -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,

View File

@ -6,7 +6,7 @@ import (
"os"
"testing"
"github.com/lkingland/faas/appsody"
"github.com/boson-project/faas/appsody"
)
// Enabling Appsody Binary Integration Tests

View File

@ -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.

View File

@ -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() {

View File

@ -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"
)

View File

@ -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"
)

View File

@ -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

View File

@ -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() {

View File

@ -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() {

2
go.mod
View File

@ -1,4 +1,4 @@
module github.com/lkingland/faas
module github.com/boson-project/faas
go 1.13

View File

@ -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.

View File

@ -11,7 +11,7 @@ import (
"os/exec"
"strings"
"github.com/lkingland/faas/k8s"
"github.com/boson-project/faas/k8s"
)
const service = `

View File

@ -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.

View File

@ -1,6 +1,6 @@
package main
import "github.com/lkingland/faas/cmd"
import "github.com/boson-project/faas/cmd"
func main() {
cmd.Execute()