runpod-deploy 0.7.3__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- runpod_deploy-0.7.3/.gitignore +20 -0
- runpod_deploy-0.7.3/CHANGELOG.md +935 -0
- runpod_deploy-0.7.3/LICENSE +21 -0
- runpod_deploy-0.7.3/PKG-INFO +118 -0
- runpod_deploy-0.7.3/README.md +93 -0
- runpod_deploy-0.7.3/STYLE.md +52 -0
- runpod_deploy-0.7.3/docker/Dockerfile.cuda-uv-base +36 -0
- runpod_deploy-0.7.3/docs/adr/0001-config-first.md +11 -0
- runpod_deploy-0.7.3/docs/adr/0002-defer-hooks.md +10 -0
- runpod_deploy-0.7.3/docs/adr/0003-git-tags.md +10 -0
- runpod_deploy-0.7.3/docs/config-reference.md +259 -0
- runpod_deploy-0.7.3/docs/extending.md +226 -0
- runpod_deploy-0.7.3/docs/lifecycle.md +306 -0
- runpod_deploy-0.7.3/docs/migration-v3.md +22 -0
- runpod_deploy-0.7.3/docs/quickstart.md +233 -0
- runpod_deploy-0.7.3/docs/recipes/README.md +62 -0
- runpod_deploy-0.7.3/docs/recipes/cost-reconciliation.md +91 -0
- runpod_deploy-0.7.3/docs/recipes/embed-deploy-metadata.md +84 -0
- runpod_deploy-0.7.3/docs/recipes/flash-attention-fallback.md +52 -0
- runpod_deploy-0.7.3/docs/recipes/local-postprocess-after-run.md +73 -0
- runpod_deploy-0.7.3/docs/recipes/local-preflight-then-run.md +58 -0
- runpod_deploy-0.7.3/docs/recipes/multi-config-sweep.md +220 -0
- runpod_deploy-0.7.3/docs/recipes/predictions-only-eval.md +82 -0
- runpod_deploy-0.7.3/docs/recipes/reproducibility.md +81 -0
- runpod_deploy-0.7.3/docs/release.md +117 -0
- runpod_deploy-0.7.3/docs/runpod-gotchas.md +21 -0
- runpod_deploy-0.7.3/docs/troubleshooting.md +489 -0
- runpod_deploy-0.7.3/examples/README.md +47 -0
- runpod_deploy-0.7.3/examples/forensics/README.md +35 -0
- runpod_deploy-0.7.3/examples/forensics/cost_reconciliation_one_sweep.sh +25 -0
- runpod_deploy-0.7.3/examples/forensics/dc_failover_audit.sh +38 -0
- runpod_deploy-0.7.3/examples/forensics/find_killed_pods.sh +36 -0
- runpod_deploy-0.7.3/examples/post_transformers/gpu_benchmark.yaml +38 -0
- runpod_deploy-0.7.3/examples/prompt-injection-sdd/headline_resume.yaml +41 -0
- runpod_deploy-0.7.3/examples/prompt-injection-v3/v3_1_ephemeral.yaml +151 -0
- runpod_deploy-0.7.3/examples/research-kb/pdf_embed_gpu.yaml +39 -0
- runpod_deploy-0.7.3/examples/smoke/README.md +42 -0
- runpod_deploy-0.7.3/examples/smoke/a4000_smoke.yaml +76 -0
- runpod_deploy-0.7.3/examples/smoke/a4000_smoke_pinned.yaml +86 -0
- runpod_deploy-0.7.3/examples/smoke/payload/hello.txt +1 -0
- runpod_deploy-0.7.3/examples/v0_5_canonical/README.md +80 -0
- runpod_deploy-0.7.3/examples/v0_5_canonical/canonical_sweep_pinned.yaml +98 -0
- runpod_deploy-0.7.3/pyproject.toml +115 -0
- runpod_deploy-0.7.3/src/runpod_deploy/__init__.py +74 -0
- runpod_deploy-0.7.3/src/runpod_deploy/_config_parsers.py +436 -0
- runpod_deploy-0.7.3/src/runpod_deploy/cli.py +1063 -0
- runpod_deploy-0.7.3/src/runpod_deploy/config.py +509 -0
- runpod_deploy-0.7.3/src/runpod_deploy/forensics.py +92 -0
- runpod_deploy-0.7.3/src/runpod_deploy/manifest.py +156 -0
- runpod_deploy-0.7.3/src/runpod_deploy/metadata.py +92 -0
- runpod_deploy-0.7.3/src/runpod_deploy/orchestrator.py +584 -0
- runpod_deploy-0.7.3/src/runpod_deploy/preflight.py +246 -0
- runpod_deploy-0.7.3/src/runpod_deploy/pricing.py +246 -0
- runpod_deploy-0.7.3/src/runpod_deploy/provider.py +377 -0
- runpod_deploy-0.7.3/src/runpod_deploy/py.typed +0 -0
- runpod_deploy-0.7.3/src/runpod_deploy/telemetry.py +377 -0
- runpod_deploy-0.7.3/src/runpod_deploy/transport.py +236 -0
- runpod_deploy-0.7.3/tests/conftest.py +143 -0
- runpod_deploy-0.7.3/tests/fixtures/golden/compare_runs.txt +27 -0
- runpod_deploy-0.7.3/tests/fixtures/golden/events_query_default_table.txt +2 -0
- runpod_deploy-0.7.3/tests/fixtures/golden/events_query_json.txt +2 -0
- runpod_deploy-0.7.3/tests/fixtures/golden/events_timeline.txt +2 -0
- runpod_deploy-0.7.3/tests/fixtures/golden/ls_runs.txt +3 -0
- runpod_deploy-0.7.3/tests/fixtures/golden/manifest_summary_root.txt +55 -0
- runpod_deploy-0.7.3/tests/fixtures/golden/manifest_summary_single.txt +23 -0
- runpod_deploy-0.7.3/tests/test_cli.py +283 -0
- runpod_deploy-0.7.3/tests/test_cli_capture_env.py +87 -0
- runpod_deploy-0.7.3/tests/test_cli_compare_runs.py +182 -0
- runpod_deploy-0.7.3/tests/test_cli_estimate.py +187 -0
- runpod_deploy-0.7.3/tests/test_cli_events.py +120 -0
- runpod_deploy-0.7.3/tests/test_cli_events_query.py +414 -0
- runpod_deploy-0.7.3/tests/test_cli_golden.py +291 -0
- runpod_deploy-0.7.3/tests/test_cli_gpu_prices.py +187 -0
- runpod_deploy-0.7.3/tests/test_cli_ls_runs.py +111 -0
- runpod_deploy-0.7.3/tests/test_cli_manifest_summary.py +275 -0
- runpod_deploy-0.7.3/tests/test_config.py +363 -0
- runpod_deploy-0.7.3/tests/test_forensics.py +118 -0
- runpod_deploy-0.7.3/tests/test_integration.py +383 -0
- runpod_deploy-0.7.3/tests/test_manifest.py +88 -0
- runpod_deploy-0.7.3/tests/test_manifest_v2.py +217 -0
- runpod_deploy-0.7.3/tests/test_metadata.py +174 -0
- runpod_deploy-0.7.3/tests/test_orchestrator.py +411 -0
- runpod_deploy-0.7.3/tests/test_orchestrator_run_job.py +372 -0
- runpod_deploy-0.7.3/tests/test_preflight.py +331 -0
- runpod_deploy-0.7.3/tests/test_pricing.py +371 -0
- runpod_deploy-0.7.3/tests/test_provider.py +480 -0
- runpod_deploy-0.7.3/tests/test_provider_subprocess.py +326 -0
- runpod_deploy-0.7.3/tests/test_recipe_examples.py +111 -0
- runpod_deploy-0.7.3/tests/test_secrets.py +199 -0
- runpod_deploy-0.7.3/tests/test_telemetry.py +351 -0
- runpod_deploy-0.7.3/tests/test_transport.py +60 -0
- runpod_deploy-0.7.3/tests/test_transport_subprocess.py +178 -0
- runpod_deploy-0.7.3/tests/test_var_flag.py +387 -0
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
.venv/
|
|
2
|
+
.pytest_cache/
|
|
3
|
+
.mypy_cache/
|
|
4
|
+
.ruff_cache/
|
|
5
|
+
__pycache__/
|
|
6
|
+
*.py[cod]
|
|
7
|
+
.coverage
|
|
8
|
+
htmlcov/
|
|
9
|
+
build/
|
|
10
|
+
dist/
|
|
11
|
+
*.egg-info/
|
|
12
|
+
examples/smoke/artifacts/
|
|
13
|
+
|
|
14
|
+
# Secrets — never commit
|
|
15
|
+
.env
|
|
16
|
+
.env.local
|
|
17
|
+
.env.*.local
|
|
18
|
+
|
|
19
|
+
# Per-host Claude Code overrides — keep local
|
|
20
|
+
.claude/settings.local.json
|