From 0ee749ba8da4192985673ff1ff3230a0801f045e Mon Sep 17 00:00:00 2001 From: Aron Kerekes Date: Mon, 6 Oct 2025 14:47:18 +0200 Subject: [PATCH 1/3] fix: oasf sdk install methods Signed-off-by: Aron Kerekes --- docs/oasf/oasf-sdk.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/docs/oasf/oasf-sdk.md b/docs/oasf/oasf-sdk.md index 7f195cb1..3b92f94f 100644 --- a/docs/oasf/oasf-sdk.md +++ b/docs/oasf/oasf-sdk.md @@ -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: @@ -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: From 153b153d2a1e502083bd6dc21859c5952b23bea9 Mon Sep 17 00:00:00 2001 From: Aron Kerekes Date: Mon, 6 Oct 2025 15:03:45 +0200 Subject: [PATCH 2/3] fix: slimctl versioning Signed-off-by: Aron Kerekes --- docs/messaging/slim-howto.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/messaging/slim-howto.md b/docs/messaging/slim-howto.md index 47998b67..f4addce9 100644 --- a/docs/messaging/slim-howto.md +++ b/docs/messaging/slim-howto.md @@ -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.2.2) in the SLIM repo. #### Installation @@ -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.2.2/slimctl-darwin-arm64 sudo mv slimctl-darwin-arm64 /usr/local/bin/slimctl sudo chmod +x /usr/local/bin/slimctl ``` @@ -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.2.2/slimctl-linux-amd64 sudo mv slimctl-linux-amd64 /usr/local/bin/slimctl sudo chmod +x /usr/local/bin/slimctl ``` From a37afc4b79066684facc5647bc6c9a6871a1d2e9 Mon Sep 17 00:00:00 2001 From: Aron Kerekes Date: Fri, 10 Oct 2025 15:14:55 +0200 Subject: [PATCH 3/3] fix: slimctl version Signed-off-by: Aron Kerekes --- docs/messaging/slim-howto.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/messaging/slim-howto.md b/docs/messaging/slim-howto.md index f4addce9..3ab5ef18 100644 --- a/docs/messaging/slim-howto.md +++ b/docs/messaging/slim-howto.md @@ -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.2) in the SLIM repo. +page](https://github.com/agntcy/slim/releases/tag/slimctl-v0.6.0) in the SLIM repo. #### Installation @@ -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.2/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 ``` @@ -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.2/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 ```