Files
home-cluster-ops/kubernetes/infrastructure/prometheus/app/service.yaml
2024-06-26 14:35:22 +10:00

16 lines
288 B
YAML

apiVersion: v1
kind: Service
metadata:
name: prometheus
namespace: prometheus
annotations:
prometheus.io/scrape: 'true'
prometheus.io/port: '9999'
spec:
selector:
app: prometheus
type: NodePort
ports:
- port: 9999
targetPort: 9999
nodePort: 30999