From b49918ed670bc784773f69c1bb85b479ffffa5bd Mon Sep 17 00:00:00 2001 From: Roger Oriol Date: Tue, 23 Jun 2026 12:04:12 +0200 Subject: [PATCH] fix(phoenix): remove ServiceMonitor (no Prometheus Operator in cluster) The ServiceMonitor CRD (monitoring.coreos.com) is not installed because this cluster runs a standalone Prometheus deployment, not the Prometheus Operator. The manifest itself noted 'only apply if Prometheus Operator is installed'. Removing it unblocks the phoenix app sync. --- phoenix/servicemonitor.yaml | 18 ------------------ 1 file changed, 18 deletions(-) delete mode 100644 phoenix/servicemonitor.yaml diff --git a/phoenix/servicemonitor.yaml b/phoenix/servicemonitor.yaml deleted file mode 100644 index d2ff537..0000000 --- a/phoenix/servicemonitor.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Optional: ServiceMonitor for Prometheus Operator -# Only apply this if you have Prometheus Operator installed -apiVersion: monitoring.coreos.com/v1 -kind: ServiceMonitor -metadata: - name: phoenix-metrics - namespace: phoenix - labels: - app: phoenix -spec: - selector: - matchLabels: - app: phoenix - endpoints: - - port: metrics - path: /metrics - interval: 30s - scrapeTimeout: 10s