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
13 changes: 13 additions & 0 deletions sandboxes/nemoclaw/policy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -127,3 +127,16 @@ network_policies:
- { path: /usr/local/bin/claude }
- { path: /usr/bin/gh }

# --- Private network access (allowed_ips) ---
# Allows any binary to reach services on the k3s cluster pod network
# (10.42.0.0/16). Without allowed_ips, the proxy's SSRF check blocks
# all connections to private RFC 1918 addresses.
cluster_pods:
name: cluster-pods
endpoints:
- port: 8080
allowed_ips:
- "10.42.0.0/16"
binaries:
- { path: "/**" }

13 changes: 12 additions & 1 deletion sandboxes/openclaw/policy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,18 @@ network_policies:
- { path: /usr/local/bin/claude }
- { path: /usr/bin/gh }


# --- Private network access (allowed_ips) ---
# Allows any binary to reach services on the k3s cluster pod network
# (10.42.0.0/16). Without allowed_ips, the proxy's SSRF check blocks
# all connections to private RFC 1918 addresses.
cluster_pods:
name: cluster-pods
endpoints:
- port: 8080
allowed_ips:
- "10.42.0.0/16"
binaries:
- { path: "/**" }

inference:
allowed_routes:
Expand Down
Loading