add support for postgres ssl mode and root cert

This commit is contained in:
Maor Friedman 2025-08-18 11:46:46 +03:00
parent 5e7c2250be
commit 85637f3c89
2 changed files with 4 additions and 0 deletions

View file

@ -75,6 +75,8 @@ class PostgresKVStoreConfig(CommonConfig):
db: str = "llamastack"
user: str
password: str | None = None
ssl_mode: str | None = None
ssl_root_cert: str | None = None
table_name: str = "llamastack_kvstore"
@classmethod