Skip to content

Commit 3266eef

Browse files
committed
Create multiple PODs where resource limits for a single POD are exceeded
1 parent 813a86c commit 3266eef

File tree

14 files changed

+3261
-0
lines changed

14 files changed

+3261
-0
lines changed

.claude/settings.local.json

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
{
2+
"permissions": {
3+
"allow": [
4+
"Bash(cargo test:*)",
5+
"Bash(cargo check:*)",
6+
"Bash(/dev/null -i)",
7+
"Bash(cargo clippy:*)",
8+
"Bash(cargo build:*)",
9+
"WebFetch(domain:docs.rs)"
10+
],
11+
"deny": [],
12+
"ask": []
13+
}
14+
}

.devcontainer/devcontainer.json

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
{
2+
"name": "Rust App",
3+
"dockerComposeFile": "/Users/robknight/dev-container/compose.yaml",
4+
"runArgs": [
5+
"--cap-add=NET_ADMIN",
6+
"--cap-add=NET_RAW"
7+
],
8+
"service": "dev",
9+
"workspaceFolder": "/projects/0xPARC/pod2/dev",
10+
"customizations": {
11+
"vscode": {
12+
"extensions": [
13+
"rust-lang.rust-analyzer"
14+
]
15+
}
16+
},
17+
"forwardPorts": [
18+
8080
19+
],
20+
"postCreateCommand": "",
21+
"postStartCommand": "",
22+
"waitFor": "postStartCommand",
23+
"remoteUser": "devuser"
24+
}

.vscode/settings.json

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"terminal.integrated.env.linux": {
3+
"PATH": "${env:HOME}/.local/share/mise/shims:${env:PATH}"
4+
},
5+
"rust-analyzer.server.extraEnv": {
6+
"PATH": "${env:HOME}/.local/share/mise/shims:${env:PATH}"
7+
}
8+
}

Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@ serde_bytes = "0.11"
4040
serde_arrays = "0.2.0"
4141
sha2 = { version = "0.10.9" }
4242
rand_chacha = "0.3.1"
43+
good_lp = { version = "1.8", default-features = false, features = ["microlp"] }
4344

4445
# Uncomment for debugging with https://github.com/ed255/plonky2/ at branch `feat/debug`. The repo directory needs to be checked out next to the pod2 repo directory.
4546
# [patch."https://github.com/0xPARC/plonky2"]

0 commit comments

Comments
 (0)