diff --git a/authentik/outposts/controllers/k8s/service_monitor.py b/authentik/outposts/controllers/k8s/service_monitor.py index 2fadbc6dd..41cd213d6 100644 --- a/authentik/outposts/controllers/k8s/service_monitor.py +++ b/authentik/outposts/controllers/k8s/service_monitor.py @@ -73,7 +73,7 @@ class PrometheusServiceMonitorReconciler(KubernetesObjectReconciler[PrometheusSe @property def noop(self) -> bool: - return not self._crd_exists() + return (not self._crd_exists()) or (self.is_embedded) def _crd_exists(self) -> bool: """Check if the Prometheus ServiceMonitor exists"""