From 68a3f29646a868b2f652dbcfdf59d85e93887b99 Mon Sep 17 00:00:00 2001 From: Paul Buetow Date: Thu, 8 Jan 2026 21:03:48 +0200 Subject: Add NodePort service for Prometheus on port 30090 --- f3s/prometheus/manifests/prometheus-nodeport.yaml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 f3s/prometheus/manifests/prometheus-nodeport.yaml diff --git a/f3s/prometheus/manifests/prometheus-nodeport.yaml b/f3s/prometheus/manifests/prometheus-nodeport.yaml new file mode 100644 index 0000000..84a095a --- /dev/null +++ b/f3s/prometheus/manifests/prometheus-nodeport.yaml @@ -0,0 +1,18 @@ +apiVersion: v1 +kind: Service +metadata: + name: prometheus-nodeport + namespace: monitoring + labels: + app: prometheus +spec: + type: NodePort + ports: + - port: 9090 + targetPort: 9090 + nodePort: 30090 + protocol: TCP + name: http + selector: + app.kubernetes.io/name: prometheus + prometheus: prometheus-kube-prometheus-prometheus -- cgit v1.2.3