mirror of https://github.com/knative/func.git
parent
3224123222
commit
09cb2d5425
|
@ -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
|
||||
|
||||
|
|
|
@ -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,
|
||||
|
|
|
@ -6,7 +6,7 @@ import (
|
|||
"os"
|
||||
"testing"
|
||||
|
||||
"github.com/lkingland/faas/appsody"
|
||||
"github.com/boson-project/faas/appsody"
|
||||
)
|
||||
|
||||
// Enabling Appsody Binary Integration Tests
|
||||
|
|
|
@ -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.
|
||||
|
|
|
@ -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() {
|
||||
|
|
|
@ -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"
|
||||
)
|
||||
|
|
|
@ -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"
|
||||
)
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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() {
|
||||
|
|
|
@ -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
2
go.mod
|
@ -1,4 +1,4 @@
|
|||
module github.com/lkingland/faas
|
||||
module github.com/boson-project/faas
|
||||
|
||||
go 1.13
|
||||
|
||||
|
|
|
@ -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.
|
||||
|
|
|
@ -11,7 +11,7 @@ import (
|
|||
"os/exec"
|
||||
"strings"
|
||||
|
||||
"github.com/lkingland/faas/k8s"
|
||||
"github.com/boson-project/faas/k8s"
|
||||
)
|
||||
|
||||
const service = `
|
||||
|
|
|
@ -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.
|
||||
|
|
Loading…
Reference in New Issue