Skip to content
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
6 changes: 3 additions & 3 deletions docs/messaging/slim-howto.md
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ documentation](./slim-data-plane.md). Otherwise examples are available in the

`slimctl` is a command-line tool for managing SLIM Nodes and Controllers. It can
be downloaded from the [releases
page](https://github.com/agntcy/slim/releases/tag/slimctl-v0.2.1) in the SLIM repo.
page](https://github.com/agntcy/slim/releases/tag/slimctl-v0.6.0) in the SLIM repo.

#### Installation

Expand All @@ -160,7 +160,7 @@ Choose the appropriate installation method for your operating system:
=== "macOS (Apple Silicon)"

```bash
curl -LO https://github.com/agntcy/slim/releases/download/slimctl-v0.2.1/slimctl-darwin-arm64
curl -LO https://github.com/agntcy/slim/releases/download/slimctl-v0.6.0/slimctl-darwin-arm64
sudo mv slimctl-darwin-arm64 /usr/local/bin/slimctl
sudo chmod +x /usr/local/bin/slimctl
```
Expand All @@ -177,7 +177,7 @@ Choose the appropriate installation method for your operating system:
=== "Linux (AMD64)"

```bash
curl -LO https://github.com/agntcy/slim/releases/download/slimctl-v0.2.1/slimctl-linux-amd64
curl -LO https://github.com/agntcy/slim/releases/download/slimctl-v0.6.0/slimctl-linux-amd64
sudo mv slimctl-linux-amd64 /usr/local/bin/slimctl
sudo chmod +x /usr/local/bin/slimctl
```
Expand Down
8 changes: 7 additions & 1 deletion docs/oasf/oasf-sdk.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ The OASF SDK is available as a Go module and a Helm chart.
Add the OASF SDK package to your Go project:

```bash
go install github.com/agntcy/oasf-sdk/pkg@latest
go install github.com/agntcy/oasf-sdk/pkg@v0.0.6
```

Deploy the OASF SDK server using the provided Helm chart:
Expand All @@ -24,6 +24,12 @@ Deploy the OASF SDK server using the provided Helm chart:
helm install oasf-sdk ./helm/oasf-sdk
```

Alternatovley, you can deploy the OASF SDK server using the provided Docker image:

```bash
docker run -p 31234:31234 ghcr.io/agntcy/oasf-sdk:latest
```

## Usage

The OASF SDK can be used in two ways:
Expand Down
Loading