Skip to content

Commit

Permalink
Rename ConnectEverything -> synadia-io
Browse files Browse the repository at this point in the history
  • Loading branch information
kthomas committed Jan 22, 2024
1 parent cd88e0b commit fd8d975
Show file tree
Hide file tree
Showing 38 changed files with 51 additions and 51 deletions.
2 changes: 1 addition & 1 deletion .github/CODEOWNERS
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
# Code Owners file designates mandatory reviewers
* @ConnectEverything/cloud-services
* @synadia-io/cloud-services
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/config.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
blank_issues_enabled: false
contact_links:
- name: Discussion
url: https://github.com/ConnectEverything/nex/discussions
url: https://github.com/synadia-io/nex/discussions
about: Ideal for ideas, feedback, or longer form questions.
- name: Chat
url: https://slack.nats.io
Expand Down
6 changes: 3 additions & 3 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Contributing

Thanks for your interest in contributing! This document contains `ConnectEverything/nex` specific contributing details. If you are a first-time contributor, please refer to the general [NATS Contributor Guide](https://nats.io/contributing/) to get a comprehensive overview of contributing to the NATS project.
Thanks for your interest in contributing! This document contains `synadia-io/nex` specific contributing details. If you are a first-time contributor, please refer to the general [NATS Contributor Guide](https://nats.io/contributing/) to get a comprehensive overview of contributing to the NATS project.

## Getting started

Expand All @@ -10,7 +10,7 @@ There are there general ways you can contribute to this repo:
- Reporting a bug or regression
- Contributing changes to the source code

For the first two, refer to the [GitHub Issues](https://github.com/ConnectEverything/nex/issues/new/choose) which guides you through the available options along with the needed information to collect.
For the first two, refer to the [GitHub Issues](https://github.com/synadia-io/nex/issues/new/choose) which guides you through the available options along with the needed information to collect.

## Contributing Changes

Expand All @@ -34,5 +34,5 @@ A good pull request includes:

## Get Help

If you have questions about the contribution process, please start a [GitHub discussion](https://github.com/ConnectEverything/nex/discussions), join the [NATS Slack](https://slack.nats.io/), or send your question to the [NATS Google Group](https://groups.google.com/forum/#!forum/natsio).
If you have questions about the contribution process, please start a [GitHub discussion](https://github.com/synadia-io/nex/discussions), join the [NATS Slack](https://slack.nats.io/), or send your question to the [NATS Google Group](https://groups.google.com/forum/#!forum/natsio).

6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[![Lint | Test | Build](https://github.com/ConnectEverything/nex/actions/workflows/build.yml/badge.svg)](https://github.com/ConnectEverything/nex/actions/workflows/build.yml)
![Release](https://github.com/ConnectEverything/nex/actions/workflows/release.yml/badge.svg)
[![Lint | Test | Build](https://github.com/synadia-io/nex/actions/workflows/build.yml/badge.svg)](https://github.com/synadia-io/nex/actions/workflows/build.yml)
![Release](https://github.com/synadia-io/nex/actions/workflows/release.yml/badge.svg)

# NATS Execution Engine
Leverage and extend your investment in NATS infrastructure to deploy functions and services, turning NATS into the ultimate platform for building distributed applications.
Expand All @@ -10,7 +10,7 @@ The easiest way to get started with Nex is to check out our [Using Nex](https://
If you're already familiar with Nex and how it works, then you can get going quickly by installing the Nex CLI:

```
go install github.com/ConnectEverything/nex/nex@latest
go install github.com/synadia-io/nex/nex@latest
```

_**Note** that an installation method that doesn't require Go is coming soon._
Expand Down
4 changes: 2 additions & 2 deletions agent/agent.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ import (
"path"
"time"

"github.com/ConnectEverything/nex/agent/providers"
agentapi "github.com/ConnectEverything/nex/internal/agent-api"
"github.com/cloudevents/sdk-go/pkg/cloudevents"
"github.com/nats-io/nats.go"
"github.com/synadia-io/nex/agent/providers"
agentapi "github.com/synadia-io/nex/internal/agent-api"
)

const defaultAgentHandshakeTimeoutMillis = 250
Expand Down
2 changes: 1 addition & 1 deletion agent/cmd/nex-agent/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
"os"
"syscall"

nexagent "github.com/ConnectEverything/nex/agent"
nexagent "github.com/synadia-io/nex/agent"
)

var (
Expand Down
2 changes: 1 addition & 1 deletion agent/events.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"fmt"
"os"

agentapi "github.com/ConnectEverything/nex/internal/agent-api"
agentapi "github.com/synadia-io/nex/internal/agent-api"
)

const NexEventSourceNexAgent = "nex-agent"
Expand Down
2 changes: 1 addition & 1 deletion agent/logger.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"encoding/json"
"fmt"

agentapi "github.com/ConnectEverything/nex/internal/agent-api"
agentapi "github.com/synadia-io/nex/internal/agent-api"
)

// logEmitter implements the writer interface that allows us to capture a workload's
Expand Down
2 changes: 1 addition & 1 deletion agent/metadata.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
"net/http"
"time"

agentapi "github.com/ConnectEverything/nex/internal/agent-api"
agentapi "github.com/synadia-io/nex/internal/agent-api"
)

// MmdsAddress is the address used by the agent to query firecracker MMDS
Expand Down
4 changes: 2 additions & 2 deletions agent/providers/api.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ package providers
import (
"errors"

"github.com/ConnectEverything/nex/agent/providers/lib"
agentapi "github.com/ConnectEverything/nex/internal/agent-api"
"github.com/synadia-io/nex/agent/providers/lib"
agentapi "github.com/synadia-io/nex/internal/agent-api"
)

// NexExecutionProviderELF Executable Linkable Format execution provider
Expand Down
2 changes: 1 addition & 1 deletion agent/providers/lib/elf.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import (
"strings"
"time"

agentapi "github.com/ConnectEverything/nex/internal/agent-api"
agentapi "github.com/synadia-io/nex/internal/agent-api"
)

// ELF execution provider implementation
Expand Down
2 changes: 1 addition & 1 deletion agent/providers/lib/oci.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package lib
import (
"errors"

agentapi "github.com/ConnectEverything/nex/internal/agent-api"
agentapi "github.com/synadia-io/nex/internal/agent-api"
)

// OCI execution provider implementation
Expand Down
2 changes: 1 addition & 1 deletion agent/providers/lib/v8.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ import (
"os"
"time"

agentapi "github.com/ConnectEverything/nex/internal/agent-api"
"github.com/nats-io/nats.go"
agentapi "github.com/synadia-io/nex/internal/agent-api"
v8 "rogchap.com/v8go"
)

Expand Down
2 changes: 1 addition & 1 deletion agent/providers/lib/wasm.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ import (
"io"
"os"

agentapi "github.com/ConnectEverything/nex/internal/agent-api"
"github.com/nats-io/nats.go"
agentapi "github.com/synadia-io/nex/internal/agent-api"
"github.com/tetratelabs/wazero"
"github.com/tetratelabs/wazero/imports/wasi_snapshot_preview1"
"github.com/tetratelabs/wazero/sys"
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module github.com/ConnectEverything/nex
module github.com/synadia-io/nex

go 1.21

Expand Down
2 changes: 1 addition & 1 deletion internal/node/agentcomms.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ import (
"strings"
"time"

agentapi "github.com/ConnectEverything/nex/internal/agent-api"
cloudevents "github.com/cloudevents/sdk-go"
"github.com/nats-io/nats.go"
"github.com/sirupsen/logrus"
agentapi "github.com/synadia-io/nex/internal/agent-api"
)

// Called when the node server gets a log entry via internal NATS. Used to
Expand Down
2 changes: 1 addition & 1 deletion internal/node/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (
"path/filepath"
"time"

agentapi "github.com/ConnectEverything/nex/internal/agent-api"
agentapi "github.com/synadia-io/nex/internal/agent-api"
)

const defaultCNINetworkName = "fcnet"
Expand Down
2 changes: 1 addition & 1 deletion internal/node/controlapi.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@ import (
"strings"
"time"

controlapi "github.com/ConnectEverything/nex/internal/control-api"
"github.com/nats-io/nats.go"
"github.com/nats-io/nkeys"
"github.com/pkg/errors"
"github.com/sirupsen/logrus"
controlapi "github.com/synadia-io/nex/internal/control-api"
)

// The API listener is the command and control interface for the node server
Expand Down
4 changes: 2 additions & 2 deletions internal/node/events.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@ import (
"strings"
"time"

agentapi "github.com/ConnectEverything/nex/internal/agent-api"
controlapi "github.com/ConnectEverything/nex/internal/control-api"
cloudevents "github.com/cloudevents/sdk-go"
"github.com/google/uuid"
"github.com/sirupsen/logrus"
agentapi "github.com/synadia-io/nex/internal/agent-api"
controlapi "github.com/synadia-io/nex/internal/control-api"
)

// FIXME-- move this to types repo-- audit other places where it is redeclared (nex-cli)
Expand Down
2 changes: 1 addition & 1 deletion internal/node/init.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import (
"github.com/nats-io/nats.go"
"github.com/sirupsen/logrus"

nexmodels "github.com/ConnectEverything/nex/internal/models"
nexmodels "github.com/synadia-io/nex/internal/models"
)

func CmdUp(opts *nexmodels.Options, nodeopts *nexmodels.NodeOptions, ctx context.Context, cancel context.CancelFunc, log *logrus.Logger) {
Expand Down
4 changes: 2 additions & 2 deletions internal/node/machine_mgr.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,12 @@ import (
"strconv"
"time"

agentapi "github.com/ConnectEverything/nex/internal/agent-api"
controlapi "github.com/ConnectEverything/nex/internal/control-api"
"github.com/nats-io/nats-server/v2/server"
"github.com/nats-io/nats.go"
"github.com/nats-io/nkeys"
"github.com/sirupsen/logrus"
agentapi "github.com/synadia-io/nex/internal/agent-api"
controlapi "github.com/synadia-io/nex/internal/control-api"
)

const (
Expand Down
4 changes: 2 additions & 2 deletions internal/node/payload_cache.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ import (
"path"
"strings"

agentapi "github.com/ConnectEverything/nex/internal/agent-api"
controlapi "github.com/ConnectEverything/nex/internal/control-api"
"github.com/nats-io/nats.go"
"github.com/sirupsen/logrus"
agentapi "github.com/synadia-io/nex/internal/agent-api"
controlapi "github.com/synadia-io/nex/internal/control-api"
)

type payloadCache struct {
Expand Down
4 changes: 2 additions & 2 deletions internal/node/running_vm.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@ import (
"strings"
"time"

agentapi "github.com/ConnectEverything/nex/internal/agent-api"
controlapi "github.com/ConnectEverything/nex/internal/control-api"
"github.com/firecracker-microvm/firecracker-go-sdk"
"github.com/firecracker-microvm/firecracker-go-sdk/client/models"
"github.com/rs/xid"
log "github.com/sirupsen/logrus"
agentapi "github.com/synadia-io/nex/internal/agent-api"
controlapi "github.com/synadia-io/nex/internal/control-api"
)

// Represents an instance of a single firecracker VM containing the nex agent.
Expand Down
2 changes: 1 addition & 1 deletion internal/node/stats.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"strconv"
"strings"

controlapi "github.com/ConnectEverything/nex/internal/control-api"
controlapi "github.com/synadia-io/nex/internal/control-api"
)

// This function only works on Linux, but that's okay since nex-node can only run on 64-bit linux
Expand Down
4 changes: 2 additions & 2 deletions nex/devrunner.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,12 @@ import (
"strings"
"time"

agentapi "github.com/ConnectEverything/nex/internal/agent-api"
controlapi "github.com/ConnectEverything/nex/internal/control-api"
"github.com/choria-io/fisk"
"github.com/nats-io/nats.go"
"github.com/nats-io/nkeys"
"github.com/sirupsen/logrus"
agentapi "github.com/synadia-io/nex/internal/agent-api"
controlapi "github.com/synadia-io/nex/internal/control-api"
)

var (
Expand Down
2 changes: 1 addition & 1 deletion nex/nex.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ import (
"fmt"
"os"

"github.com/ConnectEverything/nex/internal/models"
"github.com/choria-io/fisk"
"github.com/fatih/color"
"github.com/synadia-io/nex/internal/models"
)

var (
Expand Down
2 changes: 1 addition & 1 deletion nex/node_linux_amd64.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ package main
import (
"context"

nexnode "github.com/ConnectEverything/nex/internal/node"
"github.com/choria-io/fisk"
"github.com/sirupsen/logrus"
nexnode "github.com/synadia-io/nex/internal/node"
)

func init() {
Expand Down
2 changes: 1 addition & 1 deletion nex/nodes.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@ import (
"os"
"strings"

controlapi "github.com/ConnectEverything/nex/internal/control-api"
"github.com/choria-io/fisk"
"github.com/nats-io/natscli/columns"
"github.com/sirupsen/logrus"
controlapi "github.com/synadia-io/nex/internal/control-api"
)

// Uses a control API client to request a node list from a NATS environment
Expand Down
2 changes: 1 addition & 1 deletion nex/runner.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@ import (
"fmt"
"os"

controlapi "github.com/ConnectEverything/nex/internal/control-api"
"github.com/choria-io/fisk"
"github.com/nats-io/nkeys"
"github.com/sirupsen/logrus"
controlapi "github.com/synadia-io/nex/internal/control-api"
)

// Issues a request to stop a running workload
Expand Down
2 changes: 1 addition & 1 deletion nex/ui.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
package main

import (
nexui "github.com/ConnectEverything/nex/ui"
"github.com/choria-io/fisk"
nexui "github.com/synadia-io/nex/ui"
)

func init() {
Expand Down
2 changes: 1 addition & 1 deletion nex/watch.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ import (
"strings"
"time"

controlapi "github.com/ConnectEverything/nex/internal/control-api"
"github.com/cdfmlr/ellipsis"
"github.com/choria-io/fisk"
"github.com/sirupsen/logrus"
controlapi "github.com/synadia-io/nex/internal/control-api"
)

func WatchEvents(ctx *fisk.ParseContext) error {
Expand Down
2 changes: 1 addition & 1 deletion spec/monitor_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import (
"github.com/nats-io/nats.go"
"github.com/sirupsen/logrus"

. "github.com/ConnectEverything/nex/internal/control-api"
. "github.com/synadia-io/nex/internal/control-api"

. "github.com/onsi/ginkgo/v2"
. "github.com/onsi/gomega"
Expand Down
4 changes: 2 additions & 2 deletions spec/node_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ import (
. "github.com/onsi/ginkgo/v2"
. "github.com/onsi/gomega"

"github.com/ConnectEverything/nex/internal/models"
nexnode "github.com/ConnectEverything/nex/internal/node"
"github.com/synadia-io/nex/internal/models"
nexnode "github.com/synadia-io/nex/internal/node"
)

const defaultCNIPluginBinPath = "/opt/cni/bin"
Expand Down
2 changes: 1 addition & 1 deletion test/run_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ package test
import (
"testing"

. "github.com/ConnectEverything/nex/internal/control-api"
"github.com/nats-io/nkeys"
. "github.com/synadia-io/nex/internal/control-api"
)

func TestEncryption(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion test/stop_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ import (
"testing"
"time"

. "github.com/ConnectEverything/nex/internal/control-api"
"github.com/nats-io/nkeys"
. "github.com/synadia-io/nex/internal/control-api"
)

func TestStopValidation(t *testing.T) {
Expand Down
Loading

0 comments on commit fd8d975

Please sign in to comment.