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

Change deislabs organization references to project-akri #4

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ edition = "2018"

[dependencies]
# TODO: Change this to Akri main when the library is merged
akri-discovery-utils = { git = "https://github.com/deislabs/akri", branch = "main", package = "akri-discovery-utils" }
akri-discovery-utils = { git = "https://github.com/project-akri/akri", branch = "main", package = "akri-discovery-utils" }
async-trait = "0.1.0"
tokio = { version = "1.0.1", features = ["time", "net", "sync"] }
tonic = { version = "0.5.2", features = ["tls"] }
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
# Akri Discovery Handler Template
A template for accelerating creating a Discovery Handler for [Akri](https://github.com/deislabs/akri) in Rust.
A template for accelerating creating a Discovery Handler for [Akri](https://github.com/project-akri/akri) in Rust.

## About
A Discovery Handler is anything that implements Akri's the `Discover` service and `Registration` client defined in
Akri's [discovery gRPC interface](https://github.com/deislabs/akri/blob/main/discovery-utils/proto/discovery.proto).
Akri's [discovery gRPC interface](https://github.com/project-akri/akri/blob/main/discovery-utils/proto/discovery.proto).
This can be done in any language using Akri's proto file. This template creates a `DiscoveryHandler` that implements the
`Discover` service and registers it with the Akri Agent.

Expand Down Expand Up @@ -34,7 +34,7 @@ This template is pulled via the [`cargo-generate`](https://github.com/cargo-gene
```
1. Deploy Akri with your custom Discovery Handler
```sh
helm repo add akri-helm-charts https://deislabs.github.io/akri/
helm repo add akri-helm-charts https://project-akri.github.io/akri/
helm install akri akri-helm-charts/akri-dev \
--set imagePullSecrets[0].name="crPullSecret" \
--set custom.discovery.enabled=true \
Expand Down