*: github.com/monogon-dev -> github.com/monogon
Change-Id: I0b8bfde3d99d5308a73d51f869cb1440e285939f
Reviewed-on: https://review.monogon.dev/c/monogon/+/4291
Tested-by: Jenkins CI
Reviewed-by: Tim Windelschmidt <tim@monogon.tech>
diff --git a/metropolis/handbook/src/ch02-00-local-demo-cluster.md b/metropolis/handbook/src/ch02-00-local-demo-cluster.md
index 5c08569..d200bd5 100644
--- a/metropolis/handbook/src/ch02-00-local-demo-cluster.md
+++ b/metropolis/handbook/src/ch02-00-local-demo-cluster.md
@@ -116,7 +116,7 @@
## Using the cluster
-At this point you can start exploring Metropolis. Try playing with *kubectl*, or take a look at the [Cluster API](https://github.com/monogon-dev/monogon/blob/main/metropolis/handbook/src/ch03-05-cluster-api.md) chapter of this handbook.
+At this point you can start exploring Metropolis. Try playing with *kubectl*, or take a look at the [Cluster API](ch03-05-cluster-api.md) chapter of this handbook.
The cluster state should be reflected by *kubectl* output:
```shell
diff --git a/metropolis/node/core/curator/BUILD.bazel b/metropolis/node/core/curator/BUILD.bazel
index fffb664..497bf7d 100644
--- a/metropolis/node/core/curator/BUILD.bazel
+++ b/metropolis/node/core/curator/BUILD.bazel
@@ -71,7 +71,7 @@
"state_test.go",
],
embed = [":curator"],
- # TODO: https://github.com/monogon-dev/monogon/issues/191
+ # TODO: https://github.com/monogon/monogon/issues/191
flaky = True,
deps = [
"//metropolis/node",
diff --git a/metropolis/node/core/mounts.go b/metropolis/node/core/mounts.go
index 8b23b72..eadc849 100644
--- a/metropolis/node/core/mounts.go
+++ b/metropolis/node/core/mounts.go
@@ -31,7 +31,7 @@
// Nothing in Metropolis currently uses /dev/shm, but it's required
// by containerd when the host IPC namespace is shared, which
// is required by "kubectl debug node/" and specific customer applications.
- // https://github.com/monogon-dev/monogon/issues/305.
+ // https://github.com/monogon/monogon/issues/305.
{"/dev/shm", "tmpfs", unix.MS_NOEXEC | unix.MS_NOSUID | unix.MS_NODEV},
} {
if err := os.MkdirAll(el.dir, 0755); err != nil {
diff --git a/metropolis/node/core/roleserve/BUILD.bazel b/metropolis/node/core/roleserve/BUILD.bazel
index 37ec6d1..82e9219 100644
--- a/metropolis/node/core/roleserve/BUILD.bazel
+++ b/metropolis/node/core/roleserve/BUILD.bazel
@@ -59,7 +59,7 @@
"//metropolis/node:product_info",
],
embed = [":roleserve"],
- # TODO: https://github.com/monogon-dev/monogon/issues/250
+ # TODO: https://github.com/monogon/monogon/issues/250
flaky = True,
x_defs = {
"source.monogon.dev/metropolis/node/core/productinfo.path": "$(rlocationpath //metropolis/node:product_info )",
diff --git a/metropolis/node/labels_test.go b/metropolis/node/labels_test.go
index 08c27bb..530bbfa 100644
--- a/metropolis/node/labels_test.go
+++ b/metropolis/node/labels_test.go
@@ -30,7 +30,7 @@
{"../annotation", errDomainNameInvalid},
{"tcp:80.example.com/annotation", errDomainNameInvalid},
{"80/annotation", errDomainNameEndsInNumber},
- {"github.com/monogon-dev/monogon/annotation", ErrLabelInvalidPrefix},
+ {"github.com/monogon/monogon/annotation", ErrLabelInvalidPrefix},
} {
if got := ValidateLabelKey(te.in); !errors.Is(got, te.want) {
t.Errorf("%d (%q): wanted %v, got %v", i, te.in, te.want, got)
@@ -61,7 +61,7 @@
{"./annotation", ErrLabelInvalidFirstCharacter},
{"../annotation", ErrLabelInvalidFirstCharacter},
{"tcp:80.example.com/annotation", ErrLabelInvalidCharacter},
- {"github.com/monogon-dev/monogon/annotation", ErrLabelInvalidCharacter},
+ {"github.com/monogon/monogon/annotation", ErrLabelInvalidCharacter},
} {
// Test our implementation against test cases.
if got := ValidateLabelValue(te.in); !errors.Is(got, te.want) {