Files
Jake ec295e6531 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
2026-03-19 11:52:32 -07:00
..
2026-03-05 10:29:03 -08:00
2026-03-06 15:27:12 -08:00
2026-03-06 15:27:12 -08:00
2026-03-06 15:27:12 -08:00
2026-03-06 15:27:12 -08:00
2026-03-06 15:27:12 -08:00
2025-08-29 15:24:32 -07:00
2025-06-13 11:33:07 +02:00

Naming Conventions

Projects and libraries should follow Python's PEP8 naming conventions:

Modules should have short, all-lowercase names. Underscores can be used in the module name if it improves readability. Python packages should also have short, all-lowercase names, although the use of underscores is discouraged.

When an extension module written in C or C++ has an accompanying Python module that provides a higher level (e.g. more object oriented) interface, the C/C++ module has a leading underscore (e.g. _socket).