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"""

View File

@ -31,9 +31,7 @@ class KubernetesObjectReconciler(Generic[T]):
def __init__(self, outpost: Outpost):
self.outpost = outpost
self.namespace = ""
self.logger = get_logger(
component=f"k8s-reconciler-{self.__class__.__name__}", outpost=outpost
)
self.logger = get_logger(controller=self.__class__.__name__, outpost=outpost)
def run(self):
"""Create object if it doesn't exist, update if needed or recreate if needed."""