Use Ed25519 runtime trust keys
All checks were successful
build / build (push) Successful in 14s

This commit is contained in:
robert
2026-06-02 15:30:50 -03:00
parent daeadda8bb
commit a0229a1e64
3 changed files with 7 additions and 4 deletions

View File

@@ -30,7 +30,7 @@ if TYPE_CHECKING:
from .config import Settings from .config import Settings
A2A_PACK_MIN_VERSION = "0.1.52" A2A_PACK_MIN_VERSION = "0.1.53"
@dataclass(frozen=True) @dataclass(frozen=True)

View File

@@ -51,9 +51,12 @@ spec:
- name: A2A_GRANT_VERIFYING_KEY - name: A2A_GRANT_VERIFYING_KEY
valueFrom: valueFrom:
secretKeyRef: {name: platform-secrets, key: grant_verifying_key} secretKeyRef: {name: platform-secrets, key: grant_verifying_key}
- name: A2A_PLATFORM_SECRET - name: A2A_RECEIPT_SIGNING_KEY
valueFrom: valueFrom:
secretKeyRef: {name: agent-builder-agent-secrets, key: A2A_PLATFORM_SECRET} secretKeyRef: {name: platform-secrets, key: receipt_signing_key}
- name: A2A_REPLAY_SIGNING_KEY
valueFrom:
secretKeyRef: {name: platform-secrets, key: replay_signing_key}
- name: A2A_CP_URL - name: A2A_CP_URL
value: http://control-plane.control-plane.svc.cluster.local value: http://control-plane.control-plane.svc.cluster.local
readinessProbe: readinessProbe:

View File

@@ -1,4 +1,4 @@
a2a-pack>=0.1.52 a2a-pack>=0.1.53
httpx>=0.27 httpx>=0.27
boto3>=1.34 boto3>=1.34
deepagents>=0.5.0 deepagents>=0.5.0