Skip to content
Snippets Groups Projects
Unverified Commit 6053258f authored by Paweł Krupa's avatar Paweł Krupa Committed by GitHub
Browse files

Merge pull request #1721 from ArthurSens/graf-prom-network-fix

parents b79f451b 8bdd5260
No related branches found
No related tags found
No related merge requests found
...@@ -116,6 +116,18 @@ function(params) { ...@@ -116,6 +116,18 @@ function(params) {
port: o.port, port: o.port,
protocol: 'TCP', protocol: 'TCP',
}, p.service.spec.ports), }, p.service.spec.ports),
}, {
from: [{
podSelector: {
matchLabels: {
'app.kubernetes.io/name': 'grafana',
},
},
}],
ports: [{
port: 9090,
protocol: 'TCP',
}],
}], }],
}, },
}, },
......
...@@ -22,6 +22,13 @@ spec: ...@@ -22,6 +22,13 @@ spec:
protocol: TCP protocol: TCP
- port: 8080 - port: 8080
protocol: TCP protocol: TCP
- from:
- podSelector:
matchLabels:
app.kubernetes.io/name: grafana
ports:
- port: 9090
protocol: TCP
podSelector: podSelector:
matchLabels: matchLabels:
app.kubernetes.io/component: prometheus app.kubernetes.io/component: prometheus
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment