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
|
* Kourier
|
||||||
* Cert-manager
|
* 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
|
## Usage
|
||||||
|
|
||||||
|
|
|
@ -8,7 +8,7 @@ import (
|
||||||
"os/exec"
|
"os/exec"
|
||||||
"strings"
|
"strings"
|
||||||
|
|
||||||
"github.com/lkingland/faas/k8s"
|
"github.com/boson-project/faas/k8s"
|
||||||
)
|
)
|
||||||
|
|
||||||
// NameMappings are short-name to repository full name mappings,
|
// NameMappings are short-name to repository full name mappings,
|
||||||
|
|
|
@ -6,7 +6,7 @@ import (
|
||||||
"os"
|
"os"
|
||||||
"testing"
|
"testing"
|
||||||
|
|
||||||
"github.com/lkingland/faas/appsody"
|
"github.com/boson-project/faas/appsody"
|
||||||
)
|
)
|
||||||
|
|
||||||
// Enabling Appsody Binary Integration Tests
|
// Enabling Appsody Binary Integration Tests
|
||||||
|
|
|
@ -5,8 +5,8 @@ import (
|
||||||
"path/filepath"
|
"path/filepath"
|
||||||
"testing"
|
"testing"
|
||||||
|
|
||||||
"github.com/lkingland/faas/client"
|
"github.com/boson-project/faas/client"
|
||||||
"github.com/lkingland/faas/client/mock"
|
"github.com/boson-project/faas/client/mock"
|
||||||
)
|
)
|
||||||
|
|
||||||
// TestNew ensures that instantiation succeeds or fails as expected.
|
// TestNew ensures that instantiation succeeds or fails as expected.
|
||||||
|
|
|
@ -6,10 +6,10 @@ import (
|
||||||
"github.com/ory/viper"
|
"github.com/ory/viper"
|
||||||
"github.com/spf13/cobra"
|
"github.com/spf13/cobra"
|
||||||
|
|
||||||
"github.com/lkingland/faas/appsody"
|
"github.com/boson-project/faas/appsody"
|
||||||
"github.com/lkingland/faas/client"
|
"github.com/boson-project/faas/client"
|
||||||
"github.com/lkingland/faas/docker"
|
"github.com/boson-project/faas/docker"
|
||||||
"github.com/lkingland/faas/kubectl"
|
"github.com/boson-project/faas/kubectl"
|
||||||
)
|
)
|
||||||
|
|
||||||
func init() {
|
func init() {
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
package cmd
|
package cmd
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"github.com/lkingland/faas/client"
|
"github.com/boson-project/faas/client"
|
||||||
"github.com/lkingland/faas/kubectl"
|
"github.com/boson-project/faas/kubectl"
|
||||||
"github.com/ory/viper"
|
"github.com/ory/viper"
|
||||||
"github.com/spf13/cobra"
|
"github.com/spf13/cobra"
|
||||||
)
|
)
|
||||||
|
|
|
@ -3,8 +3,8 @@ package cmd
|
||||||
import (
|
import (
|
||||||
"fmt"
|
"fmt"
|
||||||
|
|
||||||
"github.com/lkingland/faas/client"
|
"github.com/boson-project/faas/client"
|
||||||
"github.com/lkingland/faas/knative"
|
"github.com/boson-project/faas/knative"
|
||||||
"github.com/ory/viper"
|
"github.com/ory/viper"
|
||||||
"github.com/spf13/cobra"
|
"github.com/spf13/cobra"
|
||||||
)
|
)
|
||||||
|
|
|
@ -3,7 +3,7 @@ package cmd_test
|
||||||
import (
|
import (
|
||||||
"testing"
|
"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
|
// 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/ory/viper"
|
||||||
"github.com/spf13/cobra"
|
"github.com/spf13/cobra"
|
||||||
|
|
||||||
"github.com/lkingland/faas/appsody"
|
"github.com/boson-project/faas/appsody"
|
||||||
"github.com/lkingland/faas/client"
|
"github.com/boson-project/faas/client"
|
||||||
)
|
)
|
||||||
|
|
||||||
func init() {
|
func init() {
|
||||||
|
|
|
@ -6,10 +6,10 @@ import (
|
||||||
"github.com/ory/viper"
|
"github.com/ory/viper"
|
||||||
"github.com/spf13/cobra"
|
"github.com/spf13/cobra"
|
||||||
|
|
||||||
"github.com/lkingland/faas/appsody"
|
"github.com/boson-project/faas/appsody"
|
||||||
"github.com/lkingland/faas/client"
|
"github.com/boson-project/faas/client"
|
||||||
"github.com/lkingland/faas/docker"
|
"github.com/boson-project/faas/docker"
|
||||||
"github.com/lkingland/faas/kn"
|
"github.com/boson-project/faas/kn"
|
||||||
)
|
)
|
||||||
|
|
||||||
func init() {
|
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
|
go 1.13
|
||||||
|
|
||||||
|
|
|
@ -8,7 +8,7 @@ import (
|
||||||
"os/exec"
|
"os/exec"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
"github.com/lkingland/faas/k8s"
|
"github.com/boson-project/faas/k8s"
|
||||||
)
|
)
|
||||||
|
|
||||||
// Updater implemented using the kn binary.
|
// Updater implemented using the kn binary.
|
||||||
|
|
|
@ -11,7 +11,7 @@ import (
|
||||||
"os/exec"
|
"os/exec"
|
||||||
"strings"
|
"strings"
|
||||||
|
|
||||||
"github.com/lkingland/faas/k8s"
|
"github.com/boson-project/faas/k8s"
|
||||||
)
|
)
|
||||||
|
|
||||||
const service = `
|
const service = `
|
||||||
|
|
|
@ -7,7 +7,7 @@ import (
|
||||||
"os"
|
"os"
|
||||||
"os/exec"
|
"os/exec"
|
||||||
|
|
||||||
"github.com/lkingland/faas/k8s"
|
"github.com/boson-project/faas/k8s"
|
||||||
)
|
)
|
||||||
|
|
||||||
// Remover implemented using the kubectl binary.
|
// Remover implemented using the kubectl binary.
|
||||||
|
|
Loading…
Reference in New Issue