docs(enterprise): fix broken helm-charts links on Platform Helm page - #1705
Closed
rnaidu-seqera wants to merge 1 commit into
Closed
docs(enterprise): fix broken helm-charts links on Platform Helm page#1705rnaidu-seqera wants to merge 1 commit into
rnaidu-seqera wants to merge 1 commit into
Conversation
The seqeralabs/helm-charts repo was restructured: charts moved from <root>/platform/ to <root>/charts/platform/, and the platform chart tags were renamed from bare 0.36.1 to prefixed platform-0.36.1. All four helm-charts links on the Platform Helm page were built against the old layout and now 404. Fixes all four links in the current doc set and in versions 26.1, 25.3, 25.2, and 25.1. Reported by a customer in FD-7794. Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
rnaidu-seqera
requested review from
a team,
christopher-hakkaart and
justinegeffen
as code owners
August 3, 2026 17:03
✅ Deploy Preview for seqera-docs ready!
To edit notification comments on pull requests, go to your Netlify project configuration. |
Contributor
Author
|
Closing as a duplicate — #1706 (EDU-1330) makes the identical change and landed first. Same five files, same corrected URLs. Verified equivalent before closing; no coverage lost. Filed from FD-7794. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Problem
A customer reported (FD-7794) that the example values file link on
Platform Helm returns a 404.
They were right, and it's not the only one — all four
helm-chartslinks on that page are broken.Root cause
The
seqeralabs/helm-chartsrepo was restructured. Two changes broke these links:<root>/platform/to<root>/charts/platform/.0.36.1to prefixedplatform-0.36.1(there is no0.36.1tag anymore).Fix
tree/0.36.1/platformtree/platform-0.36.1/charts/platformblob/0.36.1/platform/examples/kustomize/values.yamlblob/platform-0.36.1/charts/platform/examples/kustomize/values.yamltree/0.36.1/platformtree/platform-0.36.1/charts/platformtree/0.36.1/platform/examples/kustomizetree/platform-0.36.1/charts/platform/examples/kustomizeApplied to all five copies of the page — the current doc set plus
version-26.1,version-25.3,version-25.2, andversion-25.1. (version-24.2and earlier don't have this page.) 20 changed lines, URLs only, no prose changes.Note that the current doc set already had the
platform-tag prefix on all four links but was still missingcharts/, so it was 404ing too.Verified
Every URL in the diff status-checked at
200; agrepfor the old forms (helm-charts/{blob,tree}/0.36.1andplatform-0.36.1/platform) now returns nothing across both docs trees.The
helm-chartslinks instudios-helm.md,groundswell-helm.md,install-groundswell.md,co-scientist/prerequisites.md, andinstall-seqera-coscientist.mdxwere also checked and all return200— their tags predate the restructure or already point atmaster/charts/...— so they are intentionally untouched.Out of scope (flagging for the docs team)
0.36.1throughout, including in thehelm show values/helm install --versionexamples. Latest isplatform-0.38.0. I deliberately did not bump it — that's a content-freshness call, not a link fix, and a released version's docs arguably shouldn't move. Worth a look for the current doc set though.Linksworkflow globs'./**/*.mdx'only, so the 1,896.mdfiles in this repo — including everyplatform-helm.md— are never link-checked, which is why this went unnoticed. Follow-up PR opened separately against.github/workflows/links.yml.🤖 Generated with Claude Code