mirror of
https://github.com/SpecterOps/Nemesis
synced 2026-06-08 12:36:42 +00:00
ec410a511a
* Initial EKS deployment work - Initial EKS deployment documentation and scripts * Added EFS for EKS `/mounted-containers` - Added EFS for EKS `/mounted-containers` for large container processing * Fix EKS Helm deployment bugs and agents API change (#109) * fix: pods crash on startup due to psql credential path mismatch templates referenced .Values.postgres which don't exist in values. Updated to .Values.credentials.postgres. * fix: jaeger container crash backoff due to v1 vs v2 service config diff * fix: pod crash back off due to loki require of delete_request_store also securityContext updated * fix: pod crash back off due to non valid config keys * fix: chatbot 503 mcp cannot start due to chatbot_readonly missing * nit: add aws session token for STS creds for testing if blank should not make a difference * fix: deps issue with pydantic-ai getting modelmanager fail with unexpected keywaord ardument controller * Change default action build trigger --------- Co-authored-by: Jake <93880195+aggr0cr4g@users.noreply.github.com>
80 lines
1.7 KiB
YAML
80 lines
1.7 KiB
YAML
site_name: Nemesis Documentation
|
|
site_url: https://specterops.github.io/Nemesis/
|
|
repo_url: https://github.com/SpecterOps/Nemesis
|
|
repo_name: SpecterOps/Nemesis
|
|
edit_uri: edit/main/docs/
|
|
|
|
plugins:
|
|
- search
|
|
|
|
exclude_docs: |
|
|
/requirements.txt
|
|
|
|
nav:
|
|
- Nemesis: index.md
|
|
- Quickstart: quickstart.md
|
|
|
|
- Usage:
|
|
- usage_guide.md
|
|
- enrichment_configuration.md
|
|
- alerting.md
|
|
- cli.md
|
|
- agents.md
|
|
- chatbot.md
|
|
- troubleshooting.md
|
|
- yara.md
|
|
- Titus Rules: titus_rules.md
|
|
- Chromium Analysis: chromium.md
|
|
- DPAPI Analysis: dpapi.md
|
|
- Container Processing: containers.md
|
|
- reporting.md
|
|
- Performance Tuning: performance.md
|
|
|
|
- Services:
|
|
- hasura.md
|
|
- jupyter.md
|
|
- housekeeping.md
|
|
|
|
- Developer:
|
|
- Project Overview: overview.md
|
|
- Adding File Enrichment Modules: file_enrichment_modules.md
|
|
- Operational Data Reference: odr.md
|
|
- Docker Compose Documentation: docker_compose.md
|
|
- Kubernetes Deployment (k3d): kubernetes.md
|
|
- Kubernetes Deployment (EKS): eks.md
|
|
- Nemesis API: api.md
|
|
|
|
theme:
|
|
name: material
|
|
locale: en
|
|
logo: images/logo.png
|
|
favicon: images/logo.png
|
|
|
|
features:
|
|
- navigation.sections
|
|
- content.code.copy
|
|
|
|
icon:
|
|
repo: fontawesome/brands/github
|
|
|
|
palette:
|
|
- media: "(prefers-color-scheme: light)"
|
|
scheme: nemesis-light
|
|
toggle:
|
|
icon: material/brightness-7
|
|
name: Switch to dark mode
|
|
|
|
- media: "(prefers-color-scheme: dark)"
|
|
scheme: nemesis-dark
|
|
toggle:
|
|
icon: material/brightness-4
|
|
name: Switch to light mode
|
|
|
|
extra_css:
|
|
- stylesheets/colors.css
|
|
|
|
markdown_extensions:
|
|
- admonition
|
|
- pymdownx.superfences
|
|
- pymdownx.highlight:
|
|
use_pygments: true |