kargo icon indicating copy to clipboard operation
kargo copied to clipboard

[docs]: promotion-page link broken

Open jfgrea27 opened this issue 2 months ago • 4 comments

Checklist

  • [x] I've searched the issue queue to verify this is not a duplicate bug report.
  • [x] I've included steps to reproduce the bug.
  • [x] I've pasted the output of kargo version.
  • [x] I've pasted logs, if applicable.

Description

The page Promotion Steps cannot be found.

Screenshots

Image

Steps to Reproduce

N/A

Version

v0.9.0`

Logs

N/A

jfgrea27 avatar Oct 08 '25 09:10 jfgrea27

Promotion steps are located at https://docs.kargo.io/user-guide/reference-docs/promotion-steps/

Can you provide some additional information on where exactly you clicked so I can try understanding how you were redirected to user-guide/reference-docs/promotion-tasks/promotion-steps/

fuskovic avatar Oct 08 '25 14:10 fuskovic

The doc build checks for broken links.

Was this an external link maybe?

krancour avatar Oct 13 '25 19:10 krancour

@rpelczar thinks he found it. The link may have been "external," from Kargo's perspective, in AKP docs.

He also believes updating Docusaurus and rebuilding docs might resolve this. I tried that, but without any success.

@rpelczar can you look, please?

fwiw, I don't think this URL is actually supposed to be valid. It looks wrong. It may be only that the "external" link in AKP docs needs to be corrected.

krancour avatar Oct 17 '25 17:10 krancour

I found the problem in the docs.

In some places, we added links using relative paths, like in this example: [built-in promotion step](./promotion-steps). The problem is that whether the link works correctly depends on whether our current URL ends with a slash. If there is a trailing /, the relative path becomes incorrect.

Documentation says (last section), to avoid this problem, we should link to the file instead of the path, as we already do in many other places.

In this example, we should replace this: [built-in promotion step](./promotion-steps) with [built-in promotion step](30-promotion-steps/index.md.

rpelczar avatar Oct 24 '25 23:10 rpelczar