Rename Go module/packages org to poseidon

* Matchbox has moved to a new home in Poseidon
* Update Makefile so container image name uses
poseidon instead of coreos
* Publish container images to quay.io/poseidon/matchbox
This commit is contained in:
Dalton Hubble
2019-05-02 21:56:06 -07:00
parent 5bfcb24003
commit 8a4da0cf7b
50 changed files with 95 additions and 93 deletions

View File

@@ -1,6 +1,6 @@
package main
import "github.com/coreos/matchbox/matchbox/cli"
import "github.com/poseidon/matchbox/matchbox/cli"
func main() {
cli.Execute()

View File

@@ -7,14 +7,14 @@ import (
"net/http"
"os"
web "github.com/coreos/matchbox/matchbox/http"
"github.com/coreos/matchbox/matchbox/rpc"
"github.com/coreos/matchbox/matchbox/server"
"github.com/coreos/matchbox/matchbox/sign"
"github.com/coreos/matchbox/matchbox/storage"
"github.com/coreos/matchbox/matchbox/tlsutil"
"github.com/coreos/matchbox/matchbox/version"
"github.com/coreos/pkg/flagutil"
web "github.com/poseidon/matchbox/matchbox/http"
"github.com/poseidon/matchbox/matchbox/rpc"
"github.com/poseidon/matchbox/matchbox/server"
"github.com/poseidon/matchbox/matchbox/sign"
"github.com/poseidon/matchbox/matchbox/storage"
"github.com/poseidon/matchbox/matchbox/tlsutil"
"github.com/poseidon/matchbox/matchbox/version"
"github.com/sirupsen/logrus"
)