Skip to content

Commit ebfd692

Browse files
authored
Add version tag to installation command (#145)
1 parent ae058f2 commit ebfd692

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,9 @@ The `extensions` module provides additional CRDs and controllers that build on t
2929
You can install the agent-sandbox controller and its CRDs with the following command.
3030

3131
```sh
32-
export VERSION="vX.Y.Z" # Replace with your desired version from https://github.com/kubernetes-sigs/agent-sandbox/releases
32+
# Replace "vX.Y.Z" with a specific version tag (e.g., "v0.1.0") from
33+
# https://github.com/kubernetes-sigs/agent-sandbox/releases
34+
export VERSION="vX.Y.Z"
3335

3436
# To install only the core components:
3537
kubectl apply -f https://github.com/kubernetes-sigs/agent-sandbox/releases/download/${VERSION}/manifest.yaml

clients/python/agentic-sandbox-client/README.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,11 @@ This Python client provides a simple, high-level interface for creating and inte
2323
```
2424
3. **Option 1: Install from source via git:**
2525
```bash
26-
pip install "git+https://github.com/kubernetes-sigs/agent-sandbox.git#subdirectory=clients/python/agentic-sandbox-client"
26+
# Replace "main" with a specific version tag (e.g., "v0.1.0") from
27+
# https://github.com/kubernetes-sigs/agent-sandbox/releases to pin a version tag.
28+
export VERSION="main"
29+
30+
pip install "git+https://github.com/kubernetes-sigs/agent-sandbox.git@${VERSION}#subdirectory=clients/python/agentic-sandbox-client"
2731
```
2832
4. **Option 2: Install from source in editable mode:**
2933
```bash

0 commit comments

Comments
 (0)