Skip to content

Commit b0d1c30

Browse files
authored
Merge pull request #201 from hasbro17/haseeb/update-import-paths-and-links
*: update import paths from coreos to operator-framework
2 parents 1efc94a + 30231c8 commit b0d1c30

File tree

24 files changed

+49
-49
lines changed

24 files changed

+49
-49
lines changed

CONTRIBUTING.MD

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ This is a rough outline of what a contributor's workflow looks like:
2323
- Make commits of logical units.
2424
- Make sure commit messages are in the proper format (see below).
2525
- Push changes in a topic branch to a personal fork of the repository.
26-
- Submit a pull request to coreos/operator-sdk.
26+
- Submit a pull request to operator-framework/operator-sdk.
2727
- The PR must receive a LGTM from two maintainers found in the MAINTAINERS file.
2828

2929
Thanks for contributing!

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,10 @@ At a high level an operator using the SDK processes events for watched resources
3131
First, checkout and install the operator-sdk CLI:
3232

3333
```sh
34-
$ cd $GOPATH/src/github.com/coreos/operator-sdk
34+
$ cd $GOPATH/src/github.com/operator-framework/operator-sdk
3535
$ git checkout tags/v0.0.4
3636
$ dep ensure
37-
$ go install github.com/coreos/operator-sdk/commands/operator-sdk
37+
$ go install github.com/operator-framework/operator-sdk/commands/operator-sdk
3838
```
3939

4040
Create and deploy an app-operator using the SDK CLI:

bill-of-materials.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
]
1919
},
2020
{
21-
"project": "github.com/coreos/operator-sdk",
21+
"project": "github.com/operator-framework/operator-sdk",
2222
"licenses": [
2323
{
2424
"type": "Apache License 2.0",

commands/operator-sdk/cmd/build.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ import (
2020
"os"
2121
"os/exec"
2222

23-
cmdError "github.com/coreos/operator-sdk/commands/operator-sdk/error"
24-
"github.com/coreos/operator-sdk/pkg/generator"
23+
cmdError "github.com/operator-framework/operator-sdk/commands/operator-sdk/error"
24+
"github.com/operator-framework/operator-sdk/pkg/generator"
2525

2626
"github.com/spf13/cobra"
2727
yaml "gopkg.in/yaml.v2"

commands/operator-sdk/cmd/generate.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
package cmd
1616

1717
import (
18-
"github.com/coreos/operator-sdk/commands/operator-sdk/cmd/generate"
18+
"github.com/operator-framework/operator-sdk/commands/operator-sdk/cmd/generate"
1919

2020
"github.com/spf13/cobra"
2121
)

commands/operator-sdk/cmd/generate/alm_catalog.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ import (
2020
"io/ioutil"
2121
"os"
2222

23-
cmdError "github.com/coreos/operator-sdk/commands/operator-sdk/error"
24-
"github.com/coreos/operator-sdk/pkg/generator"
23+
cmdError "github.com/operator-framework/operator-sdk/commands/operator-sdk/error"
24+
"github.com/operator-framework/operator-sdk/pkg/generator"
2525
yaml "gopkg.in/yaml.v2"
2626

2727
"github.com/spf13/cobra"

commands/operator-sdk/cmd/generate/k8s.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ import (
2020
"os"
2121
"os/exec"
2222

23-
cmdError "github.com/coreos/operator-sdk/commands/operator-sdk/error"
23+
cmdError "github.com/operator-framework/operator-sdk/commands/operator-sdk/error"
2424

2525
"github.com/spf13/cobra"
2626
)

commands/operator-sdk/cmd/new.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@ import (
2222
"path/filepath"
2323
"strings"
2424

25-
"github.com/coreos/operator-sdk/commands/operator-sdk/cmd/generate"
26-
cmdError "github.com/coreos/operator-sdk/commands/operator-sdk/error"
27-
"github.com/coreos/operator-sdk/pkg/generator"
25+
"github.com/operator-framework/operator-sdk/commands/operator-sdk/cmd/generate"
26+
cmdError "github.com/operator-framework/operator-sdk/commands/operator-sdk/error"
27+
"github.com/operator-framework/operator-sdk/pkg/generator"
2828

2929
"github.com/spf13/cobra"
3030
)

commands/operator-sdk/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ import (
1818
"fmt"
1919
"os"
2020

21-
"github.com/coreos/operator-sdk/commands/operator-sdk/cmd"
21+
"github.com/operator-framework/operator-sdk/commands/operator-sdk/cmd"
2222
)
2323

2424
func main() {

doc/design/long-term/testing-operators.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Make functional tests easy to integrate into a big matrix (upstream, OpenShift,
1313
- SDK provides a method to generate a functional testing container
1414
- Docs for using a test container and setting it up against a number of providers for use in a partners CI environment
1515
- Provide a way to run the Operator binary locally outside of a container
16-
- Eg. https://github.com/coreos/operator-sdk/issues/142
16+
- Eg. https://github.com/operator-framework/operator-sdk/issues/142
1717

1818
**Open questions:**
1919
- none so far

0 commit comments

Comments
 (0)