Skip to content

Commit 3e6e518

Browse files
committed
fix some references docker/swarmkit -> moby/swarmkit
Signed-off-by: Sebastiaan van Stijn <[email protected]>
1 parent b85a0fa commit 3e6e518

File tree

14 files changed

+54
-53
lines changed

14 files changed

+54
-53
lines changed

.circleci/config.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ jobs:
66
# other environment variables (although the working directory can use the `~` character,
77
# but environment variables cannot), so to avoid having to override the GOPATH for every
88
# run command, just hard code in the directory to be CircleCI expects it to be.
9+
# FIXME: this still needs to be docker/swarmkit, as that's how it's referenced in protobuf
910
working_directory: /home/circleci/.go_workspace/src/github.com/docker/swarmkit
1011
environment:
1112
# Needed to install go
@@ -18,7 +19,7 @@ jobs:
1819

1920
# Note(cyli): We create a tmpfs mount to be used for temporary files created by tests
2021
# to mitigate the excessive I/O latencies that sometimes cause the tests to fail.
21-
# See https://github.com/docker/swarmkit/pull/2254.
22+
# See https://github.com/moby/swarmkit/pull/2254.
2223

2324
# There is no way to mount tmpfs volumes in the docker executor, so we are using
2425
# the machine executor. However, this incur a performance overhead

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<!--
22
Please make sure you've read and understood our contributing guidelines;
3-
https://github.com/docker/swarmkit/blob/master/CONTRIBUTING.md
3+
https://github.com/moby/swarmkit/blob/master/CONTRIBUTING.md
44
55
** Make sure all your commits include a signature generated with `git commit -s` **
66

BUILDING.md

Lines changed: 30 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -7,18 +7,18 @@ When setup correctly, you should have a GOROOT and GOPATH set in the environment
77
After you set up the Go development environment, use `go get` to check out
88
`swarmkit`:
99

10-
go get -d github.com/docker/swarmkit
10+
go get -d github.com/moby/swarmkit/v2@latest
1111

1212
This command installs the source repository into the `GOPATH`.
1313

1414
It is not mandatory to use `go get` to checkout the SwarmKit project. However,
1515
for these instructions to work, you need to check out the project to the
16-
correct subdirectory of the `GOPATH`: `$GOPATH/src/github.com/docker/swarmkit`.
16+
correct subdirectory of the `GOPATH`: `$GOPATH/src/github.com/moby/swarmkit`.
1717

1818
### Repeatable Builds
1919

2020
For the full development experience, one should `cd` into
21-
`$GOPATH/src/github.com/docker/swarmkit`. From there, the regular `go`
21+
`$GOPATH/src/github.com/moby/swarmkit`. From there, the regular `go`
2222
commands, such as `go test`, should work per package (please see
2323
[Developing](#developing) if they don't work).
2424

@@ -41,35 +41,35 @@ build:
4141
🐳 vet
4242
🐳 lint
4343
🐳 build
44-
github.com/docker/swarmkit
45-
github.com/docker/swarmkit/vendor/github.com/davecgh/go-spew/spew
46-
github.com/docker/swarmkit/vendor/github.com/pmezard/go-difflib/difflib
47-
github.com/docker/swarmkit/cmd/protoc-gen-gogoswarm
48-
github.com/docker/swarmkit/cmd/swarm-bench
49-
github.com/docker/swarmkit/cmd/swarmctl
50-
github.com/docker/swarmkit/vendor/github.com/stretchr/testify/assert
51-
github.com/docker/swarmkit/ca/testutils
52-
github.com/docker/swarmkit/cmd/swarmd
53-
github.com/docker/swarmkit/vendor/code.cloudfoundry.org/clock/fakeclock
54-
github.com/docker/swarmkit/vendor/github.com/stretchr/testify/require
55-
github.com/docker/swarmkit/manager/state/raft/testutils
56-
github.com/docker/swarmkit/manager/testcluster
57-
github.com/docker/swarmkit/protobuf/plugin/deepcopy/test
58-
github.com/docker/swarmkit/protobuf/plugin/raftproxy/test
44+
github.com/moby/swarmkit
45+
github.com/moby/swarmkit/vendor/github.com/davecgh/go-spew/spew
46+
github.com/moby/swarmkit/vendor/github.com/pmezard/go-difflib/difflib
47+
github.com/moby/swarmkit/cmd/protoc-gen-gogoswarm
48+
github.com/moby/swarmkit/cmd/swarm-bench
49+
github.com/moby/swarmkit/cmd/swarmctl
50+
github.com/moby/swarmkit/vendor/github.com/stretchr/testify/assert
51+
github.com/moby/swarmkit/ca/testutils
52+
github.com/moby/swarmkit/cmd/swarmd
53+
github.com/moby/swarmkit/vendor/code.cloudfoundry.org/clock/fakeclock
54+
github.com/moby/swarmkit/vendor/github.com/stretchr/testify/require
55+
github.com/moby/swarmkit/manager/state/raft/testutils
56+
github.com/moby/swarmkit/manager/testcluster
57+
github.com/moby/swarmkit/protobuf/plugin/deepcopy/test
58+
github.com/moby/swarmkit/protobuf/plugin/raftproxy/test
5959
🐳 test
60-
? github.com/docker/swarmkit [no test files]
61-
? github.com/docker/swarmkit [no test files]
62-
ok github.com/docker/swarmkit/agent 2.264s
63-
ok github.com/docker/swarmkit/agent/exec 1.055s
64-
ok github.com/docker/swarmkit/agent/exec/container 1.094s
65-
? github.com/docker/swarmkit/api [no test files]
66-
? github.com/docker/swarmkit/api/duration [no test files]
67-
? github.com/docker/swarmkit/api/timestamp [no test files]
68-
ok github.com/docker/swarmkit/ca 15.634s
60+
? github.com/moby/swarmkit [no test files]
61+
? github.com/moby/swarmkit [no test files]
62+
ok github.com/moby/swarmkit/agent 2.264s
63+
ok github.com/moby/swarmkit/agent/exec 1.055s
64+
ok github.com/moby/swarmkit/agent/exec/container 1.094s
65+
? github.com/moby/swarmkit/api [no test files]
66+
? github.com/moby/swarmkit/api/duration [no test files]
67+
? github.com/moby/swarmkit/api/timestamp [no test files]
68+
ok github.com/moby/swarmkit/ca 15.634s
6969
...
70-
ok github.com/docker/swarmkit/protobuf/plugin/raftproxy/test 1.084s
71-
ok github.com/docker/swarmkit/protobuf/ptypes 1.025s
72-
? github.com/docker/swarmkit/version [no test files]
70+
ok github.com/moby/swarmkit/protobuf/plugin/raftproxy/test 1.084s
71+
ok github.com/moby/swarmkit/protobuf/ptypes 1.025s
72+
? github.com/moby/swarmkit/version [no test files]
7373

7474
The above provides a repeatable build using the contents of the vendored
7575
`./vendor` directory. This includes formatting, vetting, linting, building,

CONTRIBUTING.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ A great way to contribute to the project is to send a detailed report when you
3737
encounter an issue. We always appreciate a well-written, thorough bug report,
3838
and will thank you for it!
3939

40-
Check that [our issue database](https://github.com/docker/swarmkit/issues)
40+
Check that [our issue database](https://github.com/moby/swarmkit/issues)
4141
doesn't already include that problem or suggestion before submitting an issue.
4242
If you find a match, you can use the "subscribe" button to get notified on
4343
updates. Do *not* leave random "+1" or "I have this too" comments, as they
@@ -64,7 +64,7 @@ This section gives the experienced contributor some tips and guidelines.
6464

6565
Not sure if that typo is worth a pull request? Found a bug and know how to fix
6666
it? Do it! We will appreciate it. Any significant improvement should be
67-
documented as [a GitHub issue](https://github.com/docker/swarmkit/issues) before
67+
documented as [a GitHub issue](https://github.com/moby/swarmkit/issues) before
6868
anybody starts working on it.
6969

7070
We are always thrilled to receive pull requests. We do our best to process them

MAINTAINERS

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#
2-
# This file describes who runs the docker/swarmkit project and how.
2+
# This file describes who runs the moby/swarmkit project and how.
33
# This file is compiled into the MAINTAINERS file in docker/opensource.
44
#
55
[Org]

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
# [SwarmKit](https://github.com/docker/swarmkit)
1+
# [SwarmKit](https://github.com/moby/swarmkit)
22

3-
[![GoDoc](https://godoc.org/github.com/docker/swarmkit?status.svg)](https://godoc.org/github.com/docker/swarmkit)
4-
[![Circle CI](https://circleci.com/gh/docker/swarmkit.svg?style=shield&circle-token=a7bf494e28963703a59de71cf19b73ad546058a7)](https://circleci.com/gh/docker/swarmkit)
5-
[![codecov.io](https://codecov.io/github/docker/swarmkit/coverage.svg?branch=master&token=LqD1dzTjsN)](https://codecov.io/github/docker/swarmkit?branch=master)
6-
[![Badge Badge](http://doyouevenbadge.com/github.com/docker/swarmkit)](http://doyouevenbadge.com/report/github.com/docker/swarmkit)
3+
[![GoDoc](https://godoc.org/github.com/moby/swarmkit?status.svg)](https://godoc.org/github.com/moby/swarmkit)
4+
[![Circle CI](https://circleci.com/gh/moby/swarmkit.svg?style=shield&circle-token=a7bf494e28963703a59de71cf19b73ad546058a7)](https://circleci.com/gh/moby/swarmkit)
5+
[![codecov.io](https://codecov.io/github/moby/swarmkit/coverage.svg?branch=master&token=LqD1dzTjsN)](https://codecov.io/github/moby/swarmkit?branch=master)
6+
[![Badge Badge](http://doyouevenbadge.com/github.com/moby/swarmkit)](http://doyouevenbadge.com/report/github.com/moby/swarmkit)
77

88
*SwarmKit* is a toolkit for orchestrating distributed systems at any scale. It includes primitives for node discovery, raft-based consensus, task scheduling and more.
99

agent/exec/controller_stub.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ func (sc *StubController) called() {
3737
if !ok {
3838
panic("Failed to find caller of function")
3939
}
40-
// longName looks like 'github.com/docker/swarmkit/agent/exec.(*StubController).Prepare:1'
40+
// longName looks like 'github.com/moby/swarmkit/agent/exec.(*StubController).Prepare:1'
4141
longName := runtime.FuncForPC(pc).Name()
4242
parts := strings.Split(longName, ".")
4343
tail := strings.Split(parts[len(parts)-1], ":")

agent/exec/dockerapi/docker_client_stub.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ func (sa *StubAPIClient) called() {
4444
if !ok {
4545
panic("failed to update counts")
4646
}
47-
// longName looks like 'github.com/docker/swarmkit/agent/exec.(*StubController).Prepare:1'
47+
// longName looks like 'github.com/moby/swarmkit/agent/exec.(*StubController).Prepare:1'
4848
longName := runtime.FuncForPC(pc).Name()
4949
parts := strings.Split(longName, ".")
5050
tail := strings.Split(parts[len(parts)-1], ":")

agent/exec/executor.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -112,9 +112,9 @@ type VolumesManager interface {
112112
Plugins() VolumePluginManager
113113
}
114114

115-
// PluginManager is the interface for accessing the volume plugin manager from
115+
// VolumePluginManager is the interface for accessing the volume plugin manager from
116116
// the executor. This is identical to
117-
// github.com/docker/swarmkit/agent/csi/plugin.PluginManager, except the former
117+
// github.com/moby/swarmkit/agent/csi/plugin.PluginManager, except the former
118118
// also includes a Get method for the VolumesManager to use. This does not
119119
// contain that Get method, to avoid having to import the Plugin type, and
120120
// because in this context, it is not needed.

cmd/external-ca-example/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
To get started, build and install the go program in this directory:
44

55
```
6-
$ go install github.com/docker/swarmkit/cmd/external-ca-example
6+
$ go install github.com/moby/swarmkit/v2/cmd/external-ca-example@latest
77
```
88

99
Now, run `external-ca-example`:

0 commit comments

Comments
 (0)