mirror of
https://github.com/coreos/prometheus-operator.git
synced 2026-02-05 15:46:31 +01:00
24 lines
428 B
YAML
24 lines
428 B
YAML
apiVersion: networking.k8s.io/v1
|
|
kind: NetworkPolicy
|
|
metadata:
|
|
name: node-exporter
|
|
spec:
|
|
ingress:
|
|
- from:
|
|
- podSelector:
|
|
matchExpressions:
|
|
- key: app
|
|
operator: In
|
|
values:
|
|
- prometheus
|
|
- key: prometheus
|
|
operator: In
|
|
values:
|
|
- k8s
|
|
ports:
|
|
- port: 9100
|
|
protocol: TCP
|
|
podSelector:
|
|
matchLabels:
|
|
app: node-exporter
|