From 574bb8858ee417913f95fa93e04ebcbe3c53f539 Mon Sep 17 00:00:00 2001 From: paul <423357+toothbrush@users.noreply.github.com> Date: Sun, 21 Jun 2026 12:19:31 +0930 Subject: [PATCH 1/2] docs: Point user at real regions. I noticed a few nonexistent regions had snuck into our user-facing help texts. Fix. --- cmd/entire/cli/repo_mirror.go | 2 +- cmd/entire/cli/repo_mirror_collaborators.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/cmd/entire/cli/repo_mirror.go b/cmd/entire/cli/repo_mirror.go index d8906a3671..f3e61671cf 100644 --- a/cmd/entire/cli/repo_mirror.go +++ b/cmd/entire/cli/repo_mirror.go @@ -132,7 +132,7 @@ func newRepoMirrorCreateCmd() *cobra.Command { "(upstream, cluster). The cluster-host defaults to " + defaultClusterHost + " when omitted.", Example: " entire repo mirror create github.com/octocat/hello-world\n" + - " entire repo mirror create github.com/octocat/hello-world eu-west-1.entire.io", + " entire repo mirror create github.com/octocat/hello-world us-east-2.entire.io", Args: cobra.RangeArgs(1, 2), RunE: func(cmd *cobra.Command, args []string) error { owner, repo, err := parseGitHubURL(args[0]) diff --git a/cmd/entire/cli/repo_mirror_collaborators.go b/cmd/entire/cli/repo_mirror_collaborators.go index e8c2f709f7..4ff1a897de 100644 --- a/cmd/entire/cli/repo_mirror_collaborators.go +++ b/cmd/entire/cli/repo_mirror_collaborators.go @@ -74,7 +74,7 @@ func newRepoMirrorCollaboratorsAddCmd() *cobra.Command { "(pull works without push-through). The cluster-host defaults to " + defaultClusterHost + " when omitted.", Example: " entire repo mirror collaborators add github.com/acme/widget github:alice --role writer\n" + - " entire repo mirror collaborators add github.com/acme/widget github:alice eu-west-1.entire.io --role reader", + " entire repo mirror collaborators add github.com/acme/widget github:alice us-east-2.entire.io --role reader", Args: cobra.RangeArgs(2, 3), RunE: func(cmd *cobra.Command, args []string) error { owner, repo, err := parseGitHubURL(args[0]) From bd0a96b0b495ba5a727563530df127d5f0c4e9d5 Mon Sep 17 00:00:00 2001 From: paul <423357+toothbrush@users.noreply.github.com> Date: Sun, 21 Jun 2026 12:45:21 +0930 Subject: [PATCH 2/2] Fix region FQDNs --- cmd/entire/cli/repo_mirror.go | 2 +- cmd/entire/cli/repo_mirror_collaborators.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/cmd/entire/cli/repo_mirror.go b/cmd/entire/cli/repo_mirror.go index f3e61671cf..6a927efedc 100644 --- a/cmd/entire/cli/repo_mirror.go +++ b/cmd/entire/cli/repo_mirror.go @@ -132,7 +132,7 @@ func newRepoMirrorCreateCmd() *cobra.Command { "(upstream, cluster). The cluster-host defaults to " + defaultClusterHost + " when omitted.", Example: " entire repo mirror create github.com/octocat/hello-world\n" + - " entire repo mirror create github.com/octocat/hello-world us-east-2.entire.io", + " entire repo mirror create github.com/octocat/hello-world aws-us-east-2.entire.io", Args: cobra.RangeArgs(1, 2), RunE: func(cmd *cobra.Command, args []string) error { owner, repo, err := parseGitHubURL(args[0]) diff --git a/cmd/entire/cli/repo_mirror_collaborators.go b/cmd/entire/cli/repo_mirror_collaborators.go index 4ff1a897de..b8fa15efe7 100644 --- a/cmd/entire/cli/repo_mirror_collaborators.go +++ b/cmd/entire/cli/repo_mirror_collaborators.go @@ -74,7 +74,7 @@ func newRepoMirrorCollaboratorsAddCmd() *cobra.Command { "(pull works without push-through). The cluster-host defaults to " + defaultClusterHost + " when omitted.", Example: " entire repo mirror collaborators add github.com/acme/widget github:alice --role writer\n" + - " entire repo mirror collaborators add github.com/acme/widget github:alice us-east-2.entire.io --role reader", + " entire repo mirror collaborators add github.com/acme/widget github:alice aws-us-east-2.entire.io --role reader", Args: cobra.RangeArgs(2, 3), RunE: func(cmd *cobra.Command, args []string) error { owner, repo, err := parseGitHubURL(args[0])