File tree 1 file changed +14
-2
lines changed
1 file changed +14
-2
lines changed Original file line number Diff line number Diff line change @@ -172,8 +172,8 @@ function Service(props) {
172
172
</ div >
173
173
</ div >
174
174
{ 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 ) }
177
177
< svg xmlns = "http://www.w3.org/2000/svg"
178
178
className = "inline fill-current ml-1 h-4 w-4"
179
179
viewBox = "0 0 24 24" >
@@ -320,6 +320,18 @@ function Pod(props) {
320
320
) ;
321
321
}
322
322
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
+
323
335
function podContainers ( pods ) {
324
336
const containers = [ ] ;
325
337
You can’t perform that action at this time.
0 commit comments