outposts: improve logging from k8s controller
This commit is contained in:
parent
3454760731
commit
6b1d30d230
|
@ -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"""
|
||||
|
|
|
@ -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."""
|
||||
|
|
Reference in New Issue