Skip to content

Commit

Permalink
Switch code-ready to crc-org
Browse files Browse the repository at this point in the history
  • Loading branch information
praveenkumar committed Nov 2, 2022
1 parent 065f074 commit 1425c16
Show file tree
Hide file tree
Showing 195 changed files with 585 additions and 585 deletions.
2 changes: 1 addition & 1 deletion CONTRIBUTING.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
[[filing-issues]]
== Filing issues

File issues using the standard link:https://github.com/code-ready/crc/issues[GitHub issue tracker] for the repository.
File issues using the standard link:https://github.com/crc-org/crc/issues[GitHub issue tracker] for the repository.
Before you submit a new issue, we recommend that you search the list of issues to see if anyone already submitted a similar issue.

[[contributing-patches]]
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ GOARCH ?= $(shell go env GOARCH)

HOST_BUILD_DIR=$(BUILD_DIR)/$(GOOS)-$(GOARCH)
GOPATH ?= $(shell go env GOPATH)
ORG := github.com/code-ready
ORG := github.com/crc-org
REPOPATH ?= $(ORG)/crc
PACKAGE_DIR := packaging/$(GOOS)

Expand Down
14 changes: 7 additions & 7 deletions README.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@

toc::[]

image:https://github.com/code-ready/crc/actions/workflows/make-check.yml/badge.svg?branch=main["main", link="https://github.com/code-ready/crc/actions/workflows/make-check.yml"]
image:https://github.com/code-ready/crc/actions/workflows/windows-installer.yml/badge.svg["win msi", link="https://github.com/code-ready/crc/actions/workflows/windows-installer.yml"]
image:https://github.com/code-ready/crc/actions/workflows/macos-installer.yml/badge.svg["macos pkg", link="https://github.com/code-ready/crc/actions/workflows/macos-installer.yml"]
image:https://github.com/code-ready/crc/actions/workflows/make-rpm.yml/badge.svg["rpm", link="https://github.com/code-ready/crc/actions/workflows/make-rpm.yml"]
image:https://github.com/code-ready/crc/actions/workflows/make-check-win.yml/badge.svg["win", link="https://github.com/code-ready/crc/actions/workflows/make-check-win.yml"]
image:https://github.com/crc-org/crc/actions/workflows/make-check.yml/badge.svg?branch=main["main", link="https://github.com/crc-org/crc/actions/workflows/make-check.yml"]
image:https://github.com/crc-org/crc/actions/workflows/windows-installer.yml/badge.svg["win msi", link="https://github.com/crc-org/crc/actions/workflows/windows-installer.yml"]
image:https://github.com/crc-org/crc/actions/workflows/macos-installer.yml/badge.svg["macos pkg", link="https://github.com/crc-org/crc/actions/workflows/macos-installer.yml"]
image:https://github.com/crc-org/crc/actions/workflows/make-rpm.yml/badge.svg["rpm", link="https://github.com/crc-org/crc/actions/workflows/make-rpm.yml"]
image:https://github.com/crc-org/crc/actions/workflows/make-check-win.yml/badge.svg["win", link="https://github.com/crc-org/crc/actions/workflows/make-check-win.yml"]

[[intro-to-crc]]
== Introduction
Expand Down Expand Up @@ -42,7 +42,7 @@ CRC binaries with an embedded OpenShift disk image can be downloaded from link:h

The documentation for CRC is currently hosted by GitHub Pages.

See the link:https://code-ready.github.io/crc/[CRC Getting Started Guide].
See the link:https://crc-org.github.io/crc/[CRC Getting Started Guide].

=== Building the documentation

Expand All @@ -51,7 +51,7 @@ You can find the source files for the documentation in the link:./docs/source[do
To build the formatted documentation, link:https://github.com/containers/libpod/blob/master/install.md[install podman] then use the following:

```bash
$ git clone https://github.com/code-ready/crc
$ git clone https://github.com/crc-org/crc
$ cd crc
$ make build_docs
```
Expand Down
10 changes: 5 additions & 5 deletions cmd/crc-embedder/cmd/embed.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@ import (
"path/filepath"
"runtime"

"github.com/code-ready/crc/pkg/crc/constants"
"github.com/code-ready/crc/pkg/crc/logging"
"github.com/code-ready/crc/pkg/download"
"github.com/crc-org/crc/pkg/crc/constants"
"github.com/crc-org/crc/pkg/crc/logging"
"github.com/crc-org/crc/pkg/download"

"github.com/code-ready/crc/pkg/crc/machine/libvirt"
"github.com/code-ready/crc/pkg/crc/machine/vfkit"
"github.com/crc-org/crc/pkg/crc/machine/libvirt"
"github.com/crc-org/crc/pkg/crc/machine/vfkit"

"github.com/YourFin/binappend"
"github.com/spf13/cobra"
Expand Down
4 changes: 2 additions & 2 deletions cmd/crc-embedder/cmd/extract.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ package cmd
import (
"fmt"

"github.com/code-ready/crc/pkg/crc/logging"
"github.com/code-ready/crc/pkg/embed"
"github.com/crc-org/crc/pkg/crc/logging"
"github.com/crc-org/crc/pkg/embed"
"github.com/spf13/cobra"
)

Expand Down
2 changes: 1 addition & 1 deletion cmd/crc-embedder/cmd/list.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"fmt"

"github.com/YourFin/binappend"
"github.com/code-ready/crc/pkg/crc/logging"
"github.com/crc-org/crc/pkg/crc/logging"
"github.com/spf13/cobra"
)

Expand Down
4 changes: 2 additions & 2 deletions cmd/crc-embedder/cmd/root.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ import (
"fmt"
"os"

"github.com/code-ready/crc/pkg/crc/constants"
"github.com/code-ready/crc/pkg/crc/logging"
"github.com/crc-org/crc/pkg/crc/constants"
"github.com/crc-org/crc/pkg/crc/logging"
"github.com/spf13/cobra"
)

Expand Down
2 changes: 1 addition & 1 deletion cmd/crc-embedder/crc-embedder.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package main

import (
"github.com/code-ready/crc/cmd/crc-embedder/cmd"
"github.com/crc-org/crc/cmd/crc-embedder/cmd"
)

func main() {
Expand Down
2 changes: 1 addition & 1 deletion cmd/crc/cmd/bundle/bundle.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package bundle

import (
"github.com/code-ready/crc/pkg/crc/config"
"github.com/crc-org/crc/pkg/crc/config"
"github.com/spf13/cobra"
)

Expand Down
8 changes: 4 additions & 4 deletions cmd/crc/cmd/bundle/generate.go
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
package bundle

import (
"github.com/code-ready/crc/pkg/crc/config"
"github.com/code-ready/crc/pkg/crc/constants"
"github.com/code-ready/crc/pkg/crc/logging"
"github.com/code-ready/crc/pkg/crc/machine"
"github.com/crc-org/crc/pkg/crc/config"
"github.com/crc-org/crc/pkg/crc/constants"
"github.com/crc-org/crc/pkg/crc/logging"
"github.com/crc-org/crc/pkg/crc/machine"
"github.com/spf13/cobra"
)

Expand Down
4 changes: 2 additions & 2 deletions cmd/crc/cmd/cleanup.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ import (
"io"
"os"

crcErrors "github.com/code-ready/crc/pkg/crc/errors"
"github.com/code-ready/crc/pkg/crc/preflight"
crcErrors "github.com/crc-org/crc/pkg/crc/errors"
"github.com/crc-org/crc/pkg/crc/preflight"
"github.com/spf13/cobra"
)

Expand Down
2 changes: 1 addition & 1 deletion cmd/crc/cmd/config/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (
"strings"
"text/tabwriter"

"github.com/code-ready/crc/pkg/crc/config"
"github.com/crc-org/crc/pkg/crc/config"
"github.com/spf13/cobra"
)

Expand Down
4 changes: 2 additions & 2 deletions cmd/crc/cmd/config/get.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ import (
"errors"
"fmt"

"github.com/code-ready/crc/pkg/crc/config"
"github.com/code-ready/crc/pkg/crc/telemetry"
"github.com/crc-org/crc/pkg/crc/config"
"github.com/crc-org/crc/pkg/crc/telemetry"
"github.com/spf13/cobra"
)

Expand Down
4 changes: 2 additions & 2 deletions cmd/crc/cmd/config/set.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ import (
"errors"
"fmt"

"github.com/code-ready/crc/pkg/crc/config"
"github.com/code-ready/crc/pkg/crc/telemetry"
"github.com/crc-org/crc/pkg/crc/config"
"github.com/crc-org/crc/pkg/crc/telemetry"
"github.com/spf13/cobra"
)

Expand Down
4 changes: 2 additions & 2 deletions cmd/crc/cmd/config/unset.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ import (
"errors"
"fmt"

"github.com/code-ready/crc/pkg/crc/config"
"github.com/code-ready/crc/pkg/crc/telemetry"
"github.com/crc-org/crc/pkg/crc/config"
"github.com/crc-org/crc/pkg/crc/telemetry"
"github.com/spf13/cobra"
)

Expand Down
2 changes: 1 addition & 1 deletion cmd/crc/cmd/config/view.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
"sort"
"text/template"

"github.com/code-ready/crc/pkg/crc/config"
"github.com/crc-org/crc/pkg/crc/config"
"github.com/spf13/cobra"
)

Expand Down
8 changes: 4 additions & 4 deletions cmd/crc/cmd/console.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ import (
"io"
"os"

crcErrors "github.com/code-ready/crc/pkg/crc/errors"
"github.com/code-ready/crc/pkg/crc/machine"
"github.com/code-ready/crc/pkg/crc/machine/state"
"github.com/code-ready/crc/pkg/crc/machine/types"
crcErrors "github.com/crc-org/crc/pkg/crc/errors"
"github.com/crc-org/crc/pkg/crc/machine"
"github.com/crc-org/crc/pkg/crc/machine/state"
"github.com/crc-org/crc/pkg/crc/machine/types"
"github.com/pkg/browser"
"github.com/spf13/cobra"
)
Expand Down
2 changes: 1 addition & 1 deletion cmd/crc/cmd/console_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"fmt"
"testing"

"github.com/code-ready/crc/pkg/crc/machine/fakemachine"
"github.com/crc-org/crc/pkg/crc/machine/fakemachine"
"github.com/stretchr/testify/assert"
)

Expand Down
12 changes: 6 additions & 6 deletions cmd/crc/cmd/daemon.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,14 @@ import (
"syscall"
"time"

"github.com/code-ready/crc/pkg/crc/adminhelper"
"github.com/code-ready/crc/pkg/crc/api"
crcConfig "github.com/code-ready/crc/pkg/crc/config"
"github.com/code-ready/crc/pkg/crc/constants"
"github.com/code-ready/crc/pkg/crc/daemonclient"
"github.com/code-ready/crc/pkg/crc/logging"
"github.com/containers/gvisor-tap-vsock/pkg/types"
"github.com/containers/gvisor-tap-vsock/pkg/virtualnetwork"
"github.com/crc-org/crc/pkg/crc/adminhelper"
"github.com/crc-org/crc/pkg/crc/api"
crcConfig "github.com/crc-org/crc/pkg/crc/config"
"github.com/crc-org/crc/pkg/crc/constants"
"github.com/crc-org/crc/pkg/crc/daemonclient"
"github.com/crc-org/crc/pkg/crc/logging"
"github.com/docker/go-units"
"github.com/gorilla/handlers"
"github.com/pkg/errors"
Expand Down
4 changes: 2 additions & 2 deletions cmd/crc/cmd/daemon_darwin.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ import (
"net"
"os"

"github.com/code-ready/crc/pkg/crc/constants"
"github.com/code-ready/crc/pkg/crc/logging"
"github.com/crc-org/crc/pkg/crc/constants"
"github.com/crc-org/crc/pkg/crc/logging"
)

func vsockListener() (net.Listener, error) {
Expand Down
4 changes: 2 additions & 2 deletions cmd/crc/cmd/daemon_linux.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ import (
"net"
"os"

"github.com/code-ready/crc/pkg/crc/constants"
"github.com/code-ready/crc/pkg/crc/logging"
"github.com/containers/gvisor-tap-vsock/pkg/transport"
"github.com/crc-org/crc/pkg/crc/constants"
"github.com/crc-org/crc/pkg/crc/logging"

"github.com/coreos/go-systemd/v22/activation"
"github.com/coreos/go-systemd/v22/daemon"
Expand Down
4 changes: 2 additions & 2 deletions cmd/crc/cmd/daemon_windows.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ import (
"net"

"github.com/Microsoft/go-winio"
"github.com/code-ready/crc/pkg/crc/constants"
"github.com/code-ready/crc/pkg/crc/logging"
"github.com/containers/gvisor-tap-vsock/pkg/transport"
"github.com/crc-org/crc/pkg/crc/constants"
"github.com/crc-org/crc/pkg/crc/logging"
)

func vsockListener() (net.Listener, error) {
Expand Down
10 changes: 5 additions & 5 deletions cmd/crc/cmd/delete.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@ import (
"io"
"os"

"github.com/code-ready/crc/pkg/crc/constants"
crcErrors "github.com/code-ready/crc/pkg/crc/errors"
"github.com/code-ready/crc/pkg/crc/input"
"github.com/code-ready/crc/pkg/crc/logging"
"github.com/code-ready/crc/pkg/crc/machine"
"github.com/crc-org/crc/pkg/crc/constants"
crcErrors "github.com/crc-org/crc/pkg/crc/errors"
"github.com/crc-org/crc/pkg/crc/input"
"github.com/crc-org/crc/pkg/crc/logging"
"github.com/crc-org/crc/pkg/crc/machine"
"github.com/spf13/cobra"
)

Expand Down
2 changes: 1 addition & 1 deletion cmd/crc/cmd/delete_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"os"
"testing"

"github.com/code-ready/crc/pkg/crc/machine/fakemachine"
"github.com/crc-org/crc/pkg/crc/machine/fakemachine"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
)
Expand Down
4 changes: 2 additions & 2 deletions cmd/crc/cmd/oc_env.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ package cmd
import (
"fmt"

"github.com/code-ready/crc/pkg/crc/constants"
"github.com/code-ready/crc/pkg/os/shell"
"github.com/crc-org/crc/pkg/crc/constants"
"github.com/crc-org/crc/pkg/os/shell"
"github.com/spf13/cobra"
)

Expand Down
4 changes: 2 additions & 2 deletions cmd/crc/cmd/podman_env.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ import (
"fmt"
"runtime"

"github.com/code-ready/crc/pkg/crc/constants"
"github.com/code-ready/crc/pkg/os/shell"
"github.com/crc-org/crc/pkg/crc/constants"
"github.com/crc-org/crc/pkg/os/shell"
"github.com/spf13/cobra"
)

Expand Down
22 changes: 11 additions & 11 deletions cmd/crc/cmd/root.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,17 +8,17 @@ import (
"strings"
"time"

cmdBundle "github.com/code-ready/crc/cmd/crc/cmd/bundle"
cmdConfig "github.com/code-ready/crc/cmd/crc/cmd/config"
crcConfig "github.com/code-ready/crc/pkg/crc/config"
"github.com/code-ready/crc/pkg/crc/constants"
crcErr "github.com/code-ready/crc/pkg/crc/errors"
"github.com/code-ready/crc/pkg/crc/logging"
"github.com/code-ready/crc/pkg/crc/machine"
"github.com/code-ready/crc/pkg/crc/network"
"github.com/code-ready/crc/pkg/crc/preflight"
"github.com/code-ready/crc/pkg/crc/segment"
"github.com/code-ready/crc/pkg/crc/telemetry"
cmdBundle "github.com/crc-org/crc/cmd/crc/cmd/bundle"
cmdConfig "github.com/crc-org/crc/cmd/crc/cmd/config"
crcConfig "github.com/crc-org/crc/pkg/crc/config"
"github.com/crc-org/crc/pkg/crc/constants"
crcErr "github.com/crc-org/crc/pkg/crc/errors"
"github.com/crc-org/crc/pkg/crc/logging"
"github.com/crc-org/crc/pkg/crc/machine"
"github.com/crc-org/crc/pkg/crc/network"
"github.com/crc-org/crc/pkg/crc/preflight"
"github.com/crc-org/crc/pkg/crc/segment"
"github.com/crc-org/crc/pkg/crc/telemetry"
"github.com/spf13/cobra"
"k8s.io/client-go/util/exec"
)
Expand Down
12 changes: 6 additions & 6 deletions cmd/crc/cmd/setup.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@ import (
"io"
"os"

crcConfig "github.com/code-ready/crc/pkg/crc/config"
"github.com/code-ready/crc/pkg/crc/constants"
crcErrors "github.com/code-ready/crc/pkg/crc/errors"
"github.com/code-ready/crc/pkg/crc/input"
"github.com/code-ready/crc/pkg/crc/preflight"
"github.com/code-ready/crc/pkg/crc/validation"
crcConfig "github.com/crc-org/crc/pkg/crc/config"
"github.com/crc-org/crc/pkg/crc/constants"
crcErrors "github.com/crc-org/crc/pkg/crc/errors"
"github.com/crc-org/crc/pkg/crc/input"
"github.com/crc-org/crc/pkg/crc/preflight"
"github.com/crc-org/crc/pkg/crc/validation"

"github.com/spf13/cobra"
"k8s.io/client-go/util/exec"
Expand Down
2 changes: 1 addition & 1 deletion cmd/crc/cmd/setup_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"errors"
"testing"

crcErrors "github.com/code-ready/crc/pkg/crc/errors"
crcErrors "github.com/crc-org/crc/pkg/crc/errors"
"github.com/stretchr/testify/assert"
)

Expand Down
Loading

0 comments on commit 1425c16

Please sign in to comment.