Skip to content

Commit a9e1049

Browse files
authored
Merge pull request #210 from a-hilaly/repourl
update repository paths to github.com/kro-run
2 parents cea42d0 + 471fffb commit a9e1049

File tree

7 files changed

+14
-14
lines changed

7 files changed

+14
-14
lines changed

ATTRIBUTION.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@
22

33
[//]: # (File generated by attribution-gen. DO NOT EDIT.)
44

5-
The github.com/awslabs/kro source code is licensed under the
5+
The github.com/kro-run/kro source code is licensed under the
66
Apache License, version 2.0. A copy of this license is available in the
77
[LICENSE](LICENSE) file in the root source code directory and is included,
8-
along with this document, in any images containing github.com/awslabs/kro
8+
along with this document, in any images containing github.com/kro-run/kro
99
binaries.
1010

1111
## Package dependencies
1212

13-
The module github.com/awslabs/kro depends on a number of Open Source Go packages. Direct
13+
The module github.com/kro-run/kro depends on a number of Open Source Go packages. Direct
1414
dependencies are listed in the ./go.mod file.
1515
Those direct package dependencies have some dependencies of their own (known as
1616
"transitive dependencies")

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -177,13 +177,13 @@ $(CONTROLLER_GEN): $(LOCALBIN)
177177
.PHONY: image
178178
build-image: ## Build the kro controller images using ko build
179179
$(WITH_GOFLAGS) KOCACHE=$(KOCACHE) KO_DOCKER_REPO="public.ecr.aws/kro/controller" \
180-
ko build --bare github.com/awslabs/kro/cmd/controller \
180+
ko build --bare github.com/kro-run/kro/cmd/controller \
181181
--push=false --tags ${RELEASE_VERSION} --sbom=none
182182

183183
.PHONY: publish
184184
publish-image: ## Publish the kro controller images to ECR
185185
$(WITH_GOFLAGS) KOCACHE=$(KOCACHE) KO_DOCKER_REPO="public.ecr.aws/kro/controller" \
186-
ko publish --bare github.com/awslabs/kro/cmd/controller \
186+
ko publish --bare github.com/kro-run/kro/cmd/controller \
187187
--tags ${RELEASE_VERSION} --sbom=none
188188

189189
.PHONY: package-helm

examples/eks-cluster-mgmt/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ controllers installation) will be automated via the GitOps flow.
4949
first (surrounded with`<>`):
5050

5151
```sh
52-
export KRO_REPO_URL="https://github.com/awslabs/kro.git"
52+
export KRO_REPO_URL="https://github.com/kro-run/kro.git"
5353
export WORKSPACE_PATH=<workspace-path> #the directory where repos will be cloned e.g. ~/environment
5454
export ACCOUNT_ID=$(aws sts get-caller-identity --output text --query Account)
5555
export AWS_REGION=<region> #e.g. us-west-2

website/docs/docs/getting-started/01-Installation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ Once authenticated, install kro using the Helm chart:
3030
Fetch the latest release version from GitHub
3131
```sh
3232
export KRO_VERSION=$(curl -sL \
33-
https://api.github.com/repos/awslabs/kro/releases/latest | \
33+
https://api.github.com/repos/kro-run/kro/releases/latest | \
3434
jq -r '.tag_name | ltrimstr("v")'
3535
)
3636
```

website/docs/docs/overview.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -109,8 +109,8 @@ achieving consistency across deployment environments.
109109

110110
We welcome questions, suggestions, and contributions from the community! To get
111111
involved, check out our
112-
[contributing guide](https://github.com/awslabs/kro/blob/main/CONTRIBUTING.md).
112+
[contributing guide](https://github.com/kro-run/kro/blob/main/CONTRIBUTING.md).
113113
For bugs or feature requests, feel free to
114-
[submit an issue](https://github.com/awslabs/kro/issues). You’re also invited to
114+
[submit an issue](https://github.com/kro-run/kro/issues). You’re also invited to
115115
join our
116-
[community](https://github.com/awslabs/kro?tab=readme-ov-file#community-participation).
116+
[community](https://github.com/kro-run/kro?tab=readme-ov-file#community-participation).

website/docusaurus.config.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ const config: Config = {
5050
// Please change this to your repo.
5151
// Remove this to remove the "edit this page" links.
5252
editUrl:
53-
"https://github.com/awslabs/kro/tree/main/website",
53+
"https://github.com/kro-run/kro/tree/main/website",
5454
},
5555
blog: false,
5656
theme: {
@@ -112,7 +112,7 @@ const config: Config = {
112112
],
113113
},
114114
{
115-
href: "https://github.com/awslabs/kro",
115+
href: "https://github.com/kro-run/kro",
116116
position: "right",
117117
className: "header-github-link",
118118
"aria-label": "GitHub repository",
@@ -145,7 +145,7 @@ const config: Config = {
145145
items: [
146146
{
147147
label: "GitHub",
148-
href: "https://github.com/awslabs/kro",
148+
href: "https://github.com/kro-run/kro",
149149
},
150150
],
151151
},

website/src/pages/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ function HomepageHeader() {
2727
</Link>
2828
<Link
2929
className="button button--secondary button--lg"
30-
to="https://github.com/awslabs/kro"
30+
to="https://github.com/kro-run/kro"
3131
>
3232
Go to Github
3333
</Link>

0 commit comments

Comments
 (0)