Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: replace keyval-dev to odigos-io #1172

Merged
merged 3 commits into from
May 6, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions .goreleaser.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ builds:
dir: ./cli
id: odigos
ldflags:
- -X github.com/keyval-dev/odigos/cli/cmd.OdigosVersion={{ .Tag }}
- -X github.com/keyval-dev/odigos/cli/cmd.OdigosCommit={{ .ShortCommit }}
- -X github.com/keyval-dev/odigos/cli/cmd.OdigosDate={{ .Date }}
- -X github.com/odigos-io/odigos/cli/cmd.OdigosVersion={{ .Tag }}
- -X github.com/odigos-io/odigos/cli/cmd.OdigosCommit={{ .ShortCommit }}
- -X github.com/odigos-io/odigos/cli/cmd.OdigosDate={{ .Date }}
- env:
- CGO_ENABLED=0
goos:
Expand All @@ -32,9 +32,9 @@ builds:
dir: ./frontend
id: odigos-ui
ldflags:
- -X github.com/keyval-dev/odigos/frontend/version.OdigosVersion={{ .Tag }}
- -X github.com/keyval-dev/odigos/frontend/version.OdigosCommit={{ .ShortCommit }}
- -X github.com/keyval-dev/odigos/frontend/version.OdigosDate={{ .Date }}
- -X github.com/odigos-io/odigos/frontend/version.OdigosVersion={{ .Tag }}
- -X github.com/odigos-io/odigos/frontend/version.OdigosCommit={{ .ShortCommit }}
- -X github.com/odigos-io/odigos/frontend/version.OdigosDate={{ .Date }}
binary: odigos-ui
archives:
- id: odigos
Expand Down
6 changes: 3 additions & 3 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@ We welcome many different types of contributions, including:
## Find an Issue

We have good first issues for new contributors and help wanted issues suitable
for any contributor. [good first issue](https://github.com/keyval-dev/odigos/labels/good%20first%20issue) has extra information to
help you make your first contribution. [help wanted](https://github.com/keyval-dev/odigos/labels/help%20wanted) are issues
for any contributor. [good first issue](https://github.com/odigos-io/odigos/labels/good%20first%20issue) has extra information to
help you make your first contribution. [help wanted](https://github.com/odigos-io/odigos/labels/help%20wanted) are issues
suitable for someone who isn't a core maintainer and is good to move onto after
your first pull request.

Expand Down Expand Up @@ -79,7 +79,7 @@ After you have a working odigos setup, you can start making changes to the code

### Run Odigos Cli from code

The code for the odigos cli tool is found in the `cli` directory [here](https://github.com/keyval-dev/odigos/tree/main/cli).
The code for the odigos cli tool is found in the `cli` directory [here](https://github.com/odigos-io/odigos/tree/main/cli).
Test your cli code changes by running `go run .` from the `cli` directory:

```bash
Expand Down
2 changes: 1 addition & 1 deletion MIGRATION.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ Will install the latest version of the Odigos cli from brew.

### GitHub Releases

Go to the [Releases Page](https://github.com/keyval-dev/odigos/releases), download the latest version for your arch and os, and install it by coping the executable to a directory in your `PATH`. You can execute `odigos version` in your shell to verify that odigos is installed correctly.
Go to the [Releases Page](https://github.com/odigos-io/odigos/releases), download the latest version for your arch and os, and install it by coping the executable to a directory in your `PATH`. You can execute `odigos version` in your shell to verify that odigos is installed correctly.

## Upgrade Odigos in the Cluster

Expand Down
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
<p align="center">
<a href="https://github.com/keyval-dev/odigos/actions/workflows/publish-cli.yml" target="_blank">
<img src="https://github.com/keyval-dev/odigos/actions/workflows/publish-cli.yml/badge.svg" alt="Release Odigos CLI" style="margin-right: 10px; border: 1px solid #007acc; border-radius: 4px; padding: 5px;">
<a href="https://github.com/odigos-io/odigos/actions/workflows/publish-cli.yml" target="_blank">
<img src="https://github.com/odigos-io/odigos/actions/workflows/publish-cli.yml/badge.svg" alt="Release Odigos CLI" style="margin-right: 10px; border: 1px solid #007acc; border-radius: 4px; padding: 5px;">
</a>
<a href="https://goreportcard.com/report/github.com/keyval-dev/odigos/cli" target="_blank">
<img src="https://goreportcard.com/badge/github.com/keyval-dev/odigos/cli" alt="Go Report Card" style="margin-right: 10px; border: 1px solid #4CAF50; border-radius: 4px; padding: 5px;">
<a href="https://goreportcard.com/report/github.com/odigos-io/odigos/cli" target="_blank">
<img src="https://goreportcard.com/badge/github.com/odigos-io/odigos/cli" alt="Go Report Card" style="margin-right: 10px; border: 1px solid #4CAF50; border-radius: 4px; padding: 5px;">
</a>
<a href="https://godoc.org/github.com/keyval-dev/odigos/cli" target="_blank">
<img src="https://godoc.org/github.com/keyval-dev/odigos/cli?status.svg" alt="GoDoc" style="border: 1px solid #f39c12; border-radius: 4px; padding: 5px;">
<a href="https://godoc.org/github.com/odigos-io/odigos/cli" target="_blank">
<img src="https://godoc.org/github.com/odigos-io/odigos/cli?status.svg" alt="GoDoc" style="border: 1px solid #f39c12; border-radius: 4px; padding: 5px;">
</a>
</p>

Expand Down Expand Up @@ -104,7 +104,7 @@ Please refer to the [CONTRIBUTING.md](CONTRIBUTING.md) file for information abou

## All Thanks To Our Contributors

<a href="https://github.com/keyval-dev/odigos/graphs/contributors">
<a href="https://github.com/odigos-io/odigos/graphs/contributors">
<img src="https://contrib.rocks/image?repo=keyval-dev/odigos" />
</a>

Expand Down
2 changes: 1 addition & 1 deletion api/actions/v1alpha1/addclusterinfo_types.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ limitations under the License.
package v1alpha1

import (
"github.com/keyval-dev/odigos/common"
"github.com/odigos-io/odigos/common"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
)

Expand Down
2 changes: 1 addition & 1 deletion api/actions/v1alpha1/deleteattribute_types.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ limitations under the License.
package v1alpha1

import (
"github.com/keyval-dev/odigos/common"
"github.com/odigos-io/odigos/common"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
)

Expand Down
2 changes: 1 addition & 1 deletion api/actions/v1alpha1/renameattribute_types.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ limitations under the License.
package v1alpha1

import (
"github.com/keyval-dev/odigos/common"
"github.com/odigos-io/odigos/common"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
)

Expand Down
2 changes: 1 addition & 1 deletion api/actions/v1alpha1/zz_generated.deepcopy.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions api/generated/actions/applyconfiguration/utils.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion api/generated/actions/clientset/versioned/clientset.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion api/generated/actions/clientset/versioned/fake/register.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions api/generated/actions/informers/externalversions/factory.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading
Loading