Skip to content

Commit 78a0358

Browse files
committed
Working ingress url
1 parent 93d2599 commit 78a0358

File tree

1 file changed

+14
-2
lines changed

1 file changed

+14
-2
lines changed

web/src/Service.jsx

+14-2
Original file line numberDiff line numberDiff line change
@@ -172,8 +172,8 @@ function Service(props) {
172172
</div>
173173
</div>
174174
{service.ingresses ? service.ingresses.map((ingress) =>
175-
<p key={`${ingress.namespace}/${ingress.name}`}>
176-
<a href={'https://' + ingress.url} target="_blank" rel="noopener noreferrer">{ingress.url}
175+
<p key={`${ingress.metadata.namespace}/${ingress.metadata.name}`}>
176+
<a href={'https://' + ingressURL(ingress, service)} target="_blank" rel="noopener noreferrer">{ingressURL(ingress, service)}
177177
<svg xmlns="http://www.w3.org/2000/svg"
178178
className="inline fill-current ml-1 h-4 w-4"
179179
viewBox="0 0 24 24">
@@ -320,6 +320,18 @@ function Pod(props) {
320320
);
321321
}
322322

323+
function ingressURL(ingress, service) {
324+
let url = ""
325+
ingress.spec.rules.forEach(rule => {
326+
rule.http.paths.forEach(path => {
327+
if (path.backend.service.name === service.svc.metadata.name) {
328+
url = rule.host
329+
}
330+
})
331+
})
332+
return url;
333+
}
334+
323335
function podContainers(pods) {
324336
const containers = [];
325337

0 commit comments

Comments
 (0)