[
https://issues.apache.org/jira/browse/KNOX-3012?focusedWorklogId=907434&page=com.atlassian.jira.plugin.system.issuetabpanels:worklog-tabpanel#worklog-907434
]
ASF GitHub Bot logged work on KNOX-3012:
----------------------------------------
Author: ASF GitHub Bot
Created on: 28/Feb/24 22:45
Start Date: 28/Feb/24 22:45
Worklog Time Spent: 10m
Work Description: dombizita opened a new pull request, #873:
URL: https://github.com/apache/knox/pull/873
## What changes were proposed in this pull request?
In Ozone in [HDDS-9732](https://issues.apache.org/jira/browse/HDDS-9732) the
datanode links were changed on the SCM UI. We need to reflect these changes in
Knox.
## How was this patch tested?
I'll update this section with screenshots.
Issue Time Tracking
-------------------
Worklog Id: (was: 907434)
Remaining Estimate: 0h
Time Spent: 10m
> Fix the DN links on the Ozone SCM UI
> ------------------------------------
>
> Key: KNOX-3012
> URL: https://issues.apache.org/jira/browse/KNOX-3012
> Project: Apache Knox
> Issue Type: Bug
> Reporter: Zita Dombi
> Assignee: Zita Dombi
> Priority: Major
> Time Spent: 10m
> Remaining Estimate: 0h
>
> In HDDS-9732 we changed the datanode links on the SCM UI in Ozone, which we
> need to follow in Knox too.
> From this:
> {code:java}
> <a
> href="{{typestat.portval.toLowerCase()}}://{{typestat.hostname}}:{{typestat.portno}}"
> target="_blank">{{typestat.hostname}}</a>
> {code}
> To this:
> {code:java}
> <a href="{{typestat.protocol}}://{{typestat.hostname}}:{{typestat.port}}"
> target="_blank">{{typestat.hostname}}</a>
> {code}
> We didn't adjust this in Knox, it's still looking for the previous one:
> {code:java}
> <!-- outbound rule for the datanode links on SCM UI -->
> <rule dir="OUT" name="OZONE-SCM/ozone-scm/outbound/datanode/address">
> <match
> pattern="{{typestat.portval.toLowerCase()}}://{{typestat.hostname}}:{{typestat.portno}}"/>
> <rewrite
> template="{gateway.url}/ozone-scm/datanode/index.html?host={{typestat.portval.toLowerCase()}}://{{typestat.hostname}}:{{typestat.portno}}
> "/>
> </rule>
> {code}
--
This message was sent by Atlassian Jira
(v8.20.10#820010)