From 62e42dce78dcc0d2f60de000b037dd4d229943ee Mon Sep 17 00:00:00 2001 From: Shubham Jain Date: Mon, 3 Aug 2026 15:18:27 +0530 Subject: [PATCH 1/2] docs: update download URLs from S3 to Azure Signed-off-by: Shubham Jain --- .../version-2.0.0/keploy-cloud/time-freezing.md | 8 ++++---- .../version-2.0.0/running-keploy/keploy-karaf.md | 8 ++++---- .../version-3.0.0/keploy-cloud/time-freezing.md | 8 ++++---- .../running-keploy/generate-api-tests-using-ai.md | 6 +++--- .../version-3.0.0/running-keploy/keploy-karaf.md | 8 ++++---- .../version-4.0.0/keploy-cloud/time-freezing.md | 8 ++++---- .../running-keploy/generate-api-tests-using-ai.md | 6 +++--- .../version-4.0.0/running-keploy/keploy-karaf.md | 8 ++++---- 8 files changed, 30 insertions(+), 30 deletions(-) diff --git a/versioned_docs/version-2.0.0/keploy-cloud/time-freezing.md b/versioned_docs/version-2.0.0/keploy-cloud/time-freezing.md index d121a2f22d..dc74b7c582 100644 --- a/versioned_docs/version-2.0.0/keploy-cloud/time-freezing.md +++ b/versioned_docs/version-2.0.0/keploy-cloud/time-freezing.md @@ -56,7 +56,7 @@ uname -a ```Dockerfile # Download the time freeze agent -ADD https://keploy-enterprise.s3.us-west-2.amazonaws.com/releases/latest/assets/go_freeze_time_amd64 /lib/keploy/go_freeze_time_amd64 +ADD https://keployenterprise.blob.core.windows.net/releases/latest/assets/go_freeze_time_amd64 /lib/keploy/go_freeze_time_amd64 # set suitable permissions RUN chmod +x /lib/keploy/go_freeze_time_amd64 @@ -76,7 +76,7 @@ OR ```Dockerfile # Download the time freeze agent -ADD https://keploy-enterprise.s3.us-west-2.amazonaws.com/releases/latest/assets/go_freeze_time_arm64 /lib/keploy/go_freeze_time_arm64 +ADD https://keployenterprise.blob.core.windows.net/releases/latest/assets/go_freeze_time_arm64 /lib/keploy/go_freeze_time_arm64 # set suitable permissions RUN chmod +x /lib/keploy/go_freeze_time_arm64 @@ -105,7 +105,7 @@ Voila! Your tests will now run with time freezing enabled. ```Dockerfile # Download the time freeze agent -ADD https://keploy-enterprise.s3.us-west-2.amazonaws.com/releases/latest/assets/freeze_time_amd64.so /lib/keploy/freeze_time_amd64.so +ADD https://keployenterprise.blob.core.windows.net/releases/latest/assets/freeze_time_amd64.so /lib/keploy/freeze_time_amd64.so #set suitable permissions RUN chmod +x /lib/keploy/freeze_time_amd64.so @@ -120,7 +120,7 @@ OR ```Dockerfile # Download the time freeze agent -ADD https://keploy-enterprise.s3.us-west-2.amazonaws.com/releases/latest/assets/freeze_time_arm64.so /lib/keploy/freeze_time_arm64.so +ADD https://keployenterprise.blob.core.windows.net/releases/latest/assets/freeze_time_arm64.so /lib/keploy/freeze_time_arm64.so #set suitable permissions RUN chmod +x /lib/keploy/freeze_time_arm64.so diff --git a/versioned_docs/version-2.0.0/running-keploy/keploy-karaf.md b/versioned_docs/version-2.0.0/running-keploy/keploy-karaf.md index a5316791ab..7b27893995 100644 --- a/versioned_docs/version-2.0.0/running-keploy/keploy-karaf.md +++ b/versioned_docs/version-2.0.0/running-keploy/keploy-karaf.md @@ -35,14 +35,14 @@ curl --silent -O -L https://keploy.io/ent/install.sh && source install.sh Use `wget` to download the necessary JAR files: -- [io.keploy.agent-2.0.1.jar](https://keploy-enterprise.s3.us-west-2.amazonaws.com/agent-jars/io.keploy.agent-2.0.1.jar) -- [org.jacoco.agent-0.8.12-runtime.jar](https://keploy-enterprise.s3.us-west-2.amazonaws.com/agent-jars/org.jacoco.agent-0.8.12-runtime.jar) +- [io.keploy.agent-2.0.1.jar](https://keployenterprise.blob.core.windows.net/agent-jars/io.keploy.agent-2.0.1.jar) +- [org.jacoco.agent-0.8.12-runtime.jar](https://keployenterprise.blob.core.windows.net/agent-jars/org.jacoco.agent-0.8.12-runtime.jar) Run the following commands to download the files: ```bash -wget https://keploy-enterprise.s3.us-west-2.amazonaws.com/agent-jars/io.keploy.agent-2.0.1.jar -wget https://keploy-enterprise.s3.us-west-2.amazonaws.com/agent-jars/org.jacoco.agent-0.8.12-runtime.jar +wget https://keployenterprise.blob.core.windows.net/agent-jars/io.keploy.agent-2.0.1.jar +wget https://keployenterprise.blob.core.windows.net/agent-jars/org.jacoco.agent-0.8.12-runtime.jar ``` ## Step 2: Configure Apache Karaf diff --git a/versioned_docs/version-3.0.0/keploy-cloud/time-freezing.md b/versioned_docs/version-3.0.0/keploy-cloud/time-freezing.md index 006bce0896..1428a96f5b 100644 --- a/versioned_docs/version-3.0.0/keploy-cloud/time-freezing.md +++ b/versioned_docs/version-3.0.0/keploy-cloud/time-freezing.md @@ -60,7 +60,7 @@ uname -a ```Dockerfile # Download the time freeze agent -ADD https://keploy-enterprise.s3.us-west-2.amazonaws.com/releases/latest/assets/go_freeze_time_amd64 /lib/keploy/go_freeze_time_amd64 +ADD https://keployenterprise.blob.core.windows.net/releases/latest/assets/go_freeze_time_amd64 /lib/keploy/go_freeze_time_amd64 # set suitable permissions RUN chmod +x /lib/keploy/go_freeze_time_amd64 @@ -80,7 +80,7 @@ OR ```Dockerfile # Download the time freeze agent -ADD https://keploy-enterprise.s3.us-west-2.amazonaws.com/releases/latest/assets/go_freeze_time_arm64 /lib/keploy/go_freeze_time_arm64 +ADD https://keployenterprise.blob.core.windows.net/releases/latest/assets/go_freeze_time_arm64 /lib/keploy/go_freeze_time_arm64 # set suitable permissions RUN chmod +x /lib/keploy/go_freeze_time_arm64 @@ -109,7 +109,7 @@ Voila! Your tests will now run with time freezing enabled. ```Dockerfile # Download the time freeze agent -ADD https://keploy-enterprise.s3.us-west-2.amazonaws.com/releases/latest/assets/freeze_time_amd64.so /lib/keploy/freeze_time_amd64.so +ADD https://keployenterprise.blob.core.windows.net/releases/latest/assets/freeze_time_amd64.so /lib/keploy/freeze_time_amd64.so #set suitable permissions RUN chmod +x /lib/keploy/freeze_time_amd64.so @@ -124,7 +124,7 @@ OR ```Dockerfile # Download the time freeze agent -ADD https://keploy-enterprise.s3.us-west-2.amazonaws.com/releases/latest/assets/freeze_time_arm64.so /lib/keploy/freeze_time_arm64.so +ADD https://keployenterprise.blob.core.windows.net/releases/latest/assets/freeze_time_arm64.so /lib/keploy/freeze_time_arm64.so #set suitable permissions RUN chmod +x /lib/keploy/freeze_time_arm64.so diff --git a/versioned_docs/version-3.0.0/running-keploy/generate-api-tests-using-ai.md b/versioned_docs/version-3.0.0/running-keploy/generate-api-tests-using-ai.md index 038845eeb5..1e32934d8d 100644 --- a/versioned_docs/version-3.0.0/running-keploy/generate-api-tests-using-ai.md +++ b/versioned_docs/version-3.0.0/running-keploy/generate-api-tests-using-ai.md @@ -31,9 +31,9 @@ The Agent acts as a local interceptor that uses eBPF to record your service's in | Platform | Steps | | ----------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| **macOS** | - [Download](https://keploy-enterprise.s3.us-west-2.amazonaws.com/releases/latest/Keploy+Agent.dmg)

- Open the `.dmg` file and install the app normally.

- Launch the Keploy Agent after installation.
| -| **Linux** | - Run the following in your terminal:

`curl -L -O https://keploy-enterprise.s3.us-west-2.amazonaws.com/releases/latest/keploy-agent-linux-amd64.tar.gz`

`tar -xzf keploy-agent-linux-amd64.tar.gz`

`./keploy-agent`

| -| **Windows** | - [Download](https://keploy-enterprise.s3.us-west-2.amazonaws.com/releases/latest/Keploy+Agent-windows_amd64.zip)

Extract the zip file and Launch the Keploy Agent.
| +| **macOS** | - [Download](https://keploy.io/ent/dl/latest/Keploy%20Agent.dmg)

- Open the `.dmg` file and install the app normally.

- Launch the Keploy Agent after installation.
| +| **Linux** | - Run the following in your terminal:

`curl -L -O https://keploy.io/ent/dl/latest/keploy-agent-linux-amd64.tar.gz`

`tar -xzf keploy-agent-linux-amd64.tar.gz`

`./keploy-agent`

| +| **Windows** | - [Download](https://keploy.io/ent/dl/latest/Keploy%20Agent-windows_amd64.zip)

Extract the zip file and Launch the Keploy Agent.
| > ✅ Once installed and running, return to the Keploy Console and hit **Generate API Tests**. The Keploy Agent creates a secure bridge to your local or private > environment, enabling our engine to interact with your service as if it were in production, capturing the underlying dependency calls (DB, 3rd party APIs) without code changes. diff --git a/versioned_docs/version-3.0.0/running-keploy/keploy-karaf.md b/versioned_docs/version-3.0.0/running-keploy/keploy-karaf.md index a5316791ab..7b27893995 100644 --- a/versioned_docs/version-3.0.0/running-keploy/keploy-karaf.md +++ b/versioned_docs/version-3.0.0/running-keploy/keploy-karaf.md @@ -35,14 +35,14 @@ curl --silent -O -L https://keploy.io/ent/install.sh && source install.sh Use `wget` to download the necessary JAR files: -- [io.keploy.agent-2.0.1.jar](https://keploy-enterprise.s3.us-west-2.amazonaws.com/agent-jars/io.keploy.agent-2.0.1.jar) -- [org.jacoco.agent-0.8.12-runtime.jar](https://keploy-enterprise.s3.us-west-2.amazonaws.com/agent-jars/org.jacoco.agent-0.8.12-runtime.jar) +- [io.keploy.agent-2.0.1.jar](https://keployenterprise.blob.core.windows.net/agent-jars/io.keploy.agent-2.0.1.jar) +- [org.jacoco.agent-0.8.12-runtime.jar](https://keployenterprise.blob.core.windows.net/agent-jars/org.jacoco.agent-0.8.12-runtime.jar) Run the following commands to download the files: ```bash -wget https://keploy-enterprise.s3.us-west-2.amazonaws.com/agent-jars/io.keploy.agent-2.0.1.jar -wget https://keploy-enterprise.s3.us-west-2.amazonaws.com/agent-jars/org.jacoco.agent-0.8.12-runtime.jar +wget https://keployenterprise.blob.core.windows.net/agent-jars/io.keploy.agent-2.0.1.jar +wget https://keployenterprise.blob.core.windows.net/agent-jars/org.jacoco.agent-0.8.12-runtime.jar ``` ## Step 2: Configure Apache Karaf diff --git a/versioned_docs/version-4.0.0/keploy-cloud/time-freezing.md b/versioned_docs/version-4.0.0/keploy-cloud/time-freezing.md index 75a86ba39b..d919b48bfd 100644 --- a/versioned_docs/version-4.0.0/keploy-cloud/time-freezing.md +++ b/versioned_docs/version-4.0.0/keploy-cloud/time-freezing.md @@ -61,7 +61,7 @@ uname -a ```Dockerfile # Download the time freeze agent -ADD https://keploy-enterprise.s3.us-west-2.amazonaws.com/releases/latest/assets/go_freeze_time_amd64 /lib/keploy/go_freeze_time_amd64 +ADD https://keployenterprise.blob.core.windows.net/releases/latest/assets/go_freeze_time_amd64 /lib/keploy/go_freeze_time_amd64 # set suitable permissions RUN chmod +x /lib/keploy/go_freeze_time_amd64 @@ -81,7 +81,7 @@ OR ```Dockerfile # Download the time freeze agent -ADD https://keploy-enterprise.s3.us-west-2.amazonaws.com/releases/latest/assets/go_freeze_time_arm64 /lib/keploy/go_freeze_time_arm64 +ADD https://keployenterprise.blob.core.windows.net/releases/latest/assets/go_freeze_time_arm64 /lib/keploy/go_freeze_time_arm64 # set suitable permissions RUN chmod +x /lib/keploy/go_freeze_time_arm64 @@ -110,7 +110,7 @@ Voila! Your tests will now run with time freezing enabled. ```Dockerfile # Download the time freeze agent -ADD https://keploy-enterprise.s3.us-west-2.amazonaws.com/releases/latest/assets/freeze_time_amd64.so /lib/keploy/freeze_time_amd64.so +ADD https://keployenterprise.blob.core.windows.net/releases/latest/assets/freeze_time_amd64.so /lib/keploy/freeze_time_amd64.so #set suitable permissions RUN chmod +x /lib/keploy/freeze_time_amd64.so @@ -125,7 +125,7 @@ OR ```Dockerfile # Download the time freeze agent -ADD https://keploy-enterprise.s3.us-west-2.amazonaws.com/releases/latest/assets/freeze_time_arm64.so /lib/keploy/freeze_time_arm64.so +ADD https://keployenterprise.blob.core.windows.net/releases/latest/assets/freeze_time_arm64.so /lib/keploy/freeze_time_arm64.so #set suitable permissions RUN chmod +x /lib/keploy/freeze_time_arm64.so diff --git a/versioned_docs/version-4.0.0/running-keploy/generate-api-tests-using-ai.md b/versioned_docs/version-4.0.0/running-keploy/generate-api-tests-using-ai.md index abc6d846cb..ccd15e03e6 100644 --- a/versioned_docs/version-4.0.0/running-keploy/generate-api-tests-using-ai.md +++ b/versioned_docs/version-4.0.0/running-keploy/generate-api-tests-using-ai.md @@ -29,9 +29,9 @@ If your API is not publicly accessible, Keploy will show a warning when attempti | Platform | Steps | | ----------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| **macOS** | - [Download](https://keploy-enterprise.s3.us-west-2.amazonaws.com/releases/latest/Keploy+Agent.dmg)

- Open the `.dmg` file and install the app normally.

- Launch the Keploy Agent after installation.
| -| **Linux** | - Run the following in your terminal:

`curl -L -O https://keploy-enterprise.s3.us-west-2.amazonaws.com/releases/latest/keploy-agent-linux-amd64.tar.gz`

`tar -xzf keploy-agent-linux-amd64.tar.gz`

`./keploy-agent`

| -| **Windows** | - [Download](https://keploy-enterprise.s3.us-west-2.amazonaws.com/releases/latest/Keploy+Agent-windows_amd64.zip)

Extract the zip file and Launch the Keploy Agent.
| +| **macOS** | - [Download](https://keploy.io/ent/dl/latest/Keploy%20Agent.dmg)

- Open the `.dmg` file and install the app normally.

- Launch the Keploy Agent after installation.
| +| **Linux** | - Run the following in your terminal:

`curl -L -O https://keploy.io/ent/dl/latest/keploy-agent-linux-amd64.tar.gz`

`tar -xzf keploy-agent-linux-amd64.tar.gz`

`./keploy-agent`

| +| **Windows** | - [Download](https://keploy.io/ent/dl/latest/Keploy%20Agent-windows_amd64.zip)

Extract the zip file and Launch the Keploy Agent.
| > ✅ Once installed and running, return to the Keploy Console and hit **Generate API Tests**. The agent will proxy your local API to allow secure test generation. diff --git a/versioned_docs/version-4.0.0/running-keploy/keploy-karaf.md b/versioned_docs/version-4.0.0/running-keploy/keploy-karaf.md index 8df01ecf46..168286ca31 100644 --- a/versioned_docs/version-4.0.0/running-keploy/keploy-karaf.md +++ b/versioned_docs/version-4.0.0/running-keploy/keploy-karaf.md @@ -35,14 +35,14 @@ curl --silent -O -L https://keploy.io/ent/install.sh && source install.sh Use `wget` to download the necessary JAR files: -- [io.keploy.agent-2.0.2.jar](https://keploy-enterprise.s3.us-west-2.amazonaws.com/agent-jars/io.keploy.agent-2.0.2.jar) -- [org.jacoco.agent-0.8.12-runtime.jar](https://keploy-enterprise.s3.us-west-2.amazonaws.com/agent-jars/org.jacoco.agent-0.8.12-runtime.jar) +- [io.keploy.agent-2.0.2.jar](https://keployenterprise.blob.core.windows.net/agent-jars/io.keploy.agent-2.0.2.jar) +- [org.jacoco.agent-0.8.12-runtime.jar](https://keployenterprise.blob.core.windows.net/agent-jars/org.jacoco.agent-0.8.12-runtime.jar) Run the following commands to download the files: ```bash -wget https://keploy-enterprise.s3.us-west-2.amazonaws.com/agent-jars/io.keploy.agent-2.0.2.jar -wget https://keploy-enterprise.s3.us-west-2.amazonaws.com/agent-jars/org.jacoco.agent-0.8.12-runtime.jar +wget https://keployenterprise.blob.core.windows.net/agent-jars/io.keploy.agent-2.0.2.jar +wget https://keployenterprise.blob.core.windows.net/agent-jars/org.jacoco.agent-0.8.12-runtime.jar ``` ## Step 2: Configure Apache Karaf From d2c25be35baaeb0e34b209c1d262f4310bdbb8c7 Mon Sep 17 00:00:00 2001 From: Shubham Jain Date: Mon, 3 Aug 2026 15:58:56 +0530 Subject: [PATCH 2/2] docs: fix lint after Azure URL migration Signed-off-by: Shubham Jain --- .../running-keploy/generate-api-tests-using-ai.md | 10 +++++----- .../running-keploy/generate-api-tests-using-ai.md | 8 ++++---- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/versioned_docs/version-3.0.0/running-keploy/generate-api-tests-using-ai.md b/versioned_docs/version-3.0.0/running-keploy/generate-api-tests-using-ai.md index 1e32934d8d..f104971042 100644 --- a/versioned_docs/version-3.0.0/running-keploy/generate-api-tests-using-ai.md +++ b/versioned_docs/version-3.0.0/running-keploy/generate-api-tests-using-ai.md @@ -29,14 +29,14 @@ The Agent acts as a local interceptor that uses eBPF to record your service's in ### Keploy Agent Installation -| Platform | Steps | -| ----------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| **macOS** | - [Download](https://keploy.io/ent/dl/latest/Keploy%20Agent.dmg)

- Open the `.dmg` file and install the app normally.

- Launch the Keploy Agent after installation.
| +| Platform | Steps | +| ----------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| **macOS** | - [Download](https://keploy.io/ent/dl/latest/Keploy%20Agent.dmg)

- Open the `.dmg` file and install the app normally.

- Launch the Keploy Agent after installation.
| | **Linux** | - Run the following in your terminal:

`curl -L -O https://keploy.io/ent/dl/latest/keploy-agent-linux-amd64.tar.gz`

`tar -xzf keploy-agent-linux-amd64.tar.gz`

`./keploy-agent`

| -| **Windows** | - [Download](https://keploy.io/ent/dl/latest/Keploy%20Agent-windows_amd64.zip)

Extract the zip file and Launch the Keploy Agent.
| +| **Windows** | - [Download](https://keploy.io/ent/dl/latest/Keploy%20Agent-windows_amd64.zip)

Extract the zip file and Launch the Keploy Agent.
| > ✅ Once installed and running, return to the Keploy Console and hit **Generate API Tests**. The Keploy Agent creates a secure bridge to your local or private -> environment, enabling our engine to interact with your service as if it were in production, capturing the underlying dependency calls (DB, 3rd party APIs) without code changes. +> environment, enabling our engine to interact with your service as if it were in production, capturing the underlying dependency calls (DB, third-party APIs) without code changes. ## BEST Practices for BEST Test Output diff --git a/versioned_docs/version-4.0.0/running-keploy/generate-api-tests-using-ai.md b/versioned_docs/version-4.0.0/running-keploy/generate-api-tests-using-ai.md index ccd15e03e6..9ed8022b71 100644 --- a/versioned_docs/version-4.0.0/running-keploy/generate-api-tests-using-ai.md +++ b/versioned_docs/version-4.0.0/running-keploy/generate-api-tests-using-ai.md @@ -27,11 +27,11 @@ If your API is not publicly accessible, Keploy will show a warning when attempti ### Keploy Agent Installation -| Platform | Steps | -| ----------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| **macOS** | - [Download](https://keploy.io/ent/dl/latest/Keploy%20Agent.dmg)

- Open the `.dmg` file and install the app normally.

- Launch the Keploy Agent after installation.
| +| Platform | Steps | +| ----------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| **macOS** | - [Download](https://keploy.io/ent/dl/latest/Keploy%20Agent.dmg)

- Open the `.dmg` file and install the app normally.

- Launch the Keploy Agent after installation.
| | **Linux** | - Run the following in your terminal:

`curl -L -O https://keploy.io/ent/dl/latest/keploy-agent-linux-amd64.tar.gz`

`tar -xzf keploy-agent-linux-amd64.tar.gz`

`./keploy-agent`

| -| **Windows** | - [Download](https://keploy.io/ent/dl/latest/Keploy%20Agent-windows_amd64.zip)

Extract the zip file and Launch the Keploy Agent.
| +| **Windows** | - [Download](https://keploy.io/ent/dl/latest/Keploy%20Agent-windows_amd64.zip)

Extract the zip file and Launch the Keploy Agent.
| > ✅ Once installed and running, return to the Keploy Console and hit **Generate API Tests**. The agent will proxy your local API to allow secure test generation.