outposts: improve logging from k8s controller

This commit is contained in:
Jens Langhammer
2020-10-16 21:31:55 +02:00
parent 3454760731
commit 6b1d30d230
2 changed files with 2 additions and 4 deletions

View File

@ -34,7 +34,7 @@ class BaseController:
"""Call .run() but capture all log output and return it."""
with capture_logs() as logs:
self.run()
return logs
return [f"{x['controller']}: {x['event']}" for x in logs]
def get_static_deployment(self) -> str:
"""Return a static deployment configuration"""