Skip to content

docs: Add warning about unsupported Helm v3.18.0#1316

Merged
JakeSCahill merged 2 commits into
mainfrom
DOC-1581
Aug 15, 2025
Merged

docs: Add warning about unsupported Helm v3.18.0#1316
JakeSCahill merged 2 commits into
mainfrom
DOC-1581

Conversation

@JakeSCahill
Copy link
Copy Markdown
Contributor

Description

Resolves https://redpandadata.atlassian.net/browse/DOC-1581

This pull request improves documentation around Helm compatibility by warning users about a known issue with Helm v3.18.0 and providing troubleshooting guidance. The most important changes are grouped below.

Helm compatibility warnings and troubleshooting:

  • Added a note to modules/deploy/partials/requirements.adoc explicitly stating that Helm v3.18.0 is not supported due to a bug, including an example error message and a link to the relevant Helm GitHub issue.
  • Added a new troubleshooting section in modules/troubleshoot/partials/errors-and-solutions.adoc describing the Helm v3.18.0 bug, its symptoms, and the recommended solution to upgrade Helm, with a link to the GitHub issue for more details.

Page previews

Checks

  • New feature
  • Content gap
  • Support Follow-up
  • Small fix (typos, links, copyedits, etc)

@JakeSCahill JakeSCahill requested a review from a team as a code owner August 15, 2025 10:04
@netlify
Copy link
Copy Markdown

netlify Bot commented Aug 15, 2025

Deploy Preview for redpanda-docs-preview ready!

Name Link
🔨 Latest commit 1cc38d2
🔍 Latest deploy log https://app.netlify.com/projects/redpanda-docs-preview/deploys/689f09d78686b900081a6326
😎 Deploy Preview https://deploy-preview-1316--redpanda-docs-preview.netlify.app
📱 Preview on mobile
Toggle QR Code...

QR Code

Use your smartphone camera to open QR code link.

To edit notification comments on pull requests, go to your Netlify project configuration.

@coderabbitai
Copy link
Copy Markdown
Contributor

coderabbitai Bot commented Aug 15, 2025

Important

Review skipped

Auto incremental reviews are disabled on this repository.

Please check the settings in the CodeRabbit UI or the .coderabbit.yaml file in this repository. To trigger a single review, invoke the @coderabbitai review command.

You can disable this status message by setting the reviews.review_status to false in the CodeRabbit configuration file.

📝 Walkthrough

Walkthrough

Adds documentation warning about Helm v3.18.0 causing installation failures. Updates:

  • modules/deploy/partials/requirements.adoc: Notes v3.18.0 is unsupported, shows exact error, instructs upgrading to v3.18.4+ with link to Helm issue.
  • modules/troubleshoot/partials/errors-and-solutions.adoc: New troubleshooting section “Helm v3.18.0 is not supported (json.Number error)” with error example, upgrade guidance, and link. No code changes.

Estimated code review effort

🎯 1 (Trivial) | ⏱️ ~3 minutes

Assessment against linked issues

Objective Addressed Explanation
Document Helm 3.18.0 bug: mark unsupported, include error example, link upstream issue, and advise upgrade DOC-1581

Suggested reviewers

  • david-yu
  • micheleRP
  • chrisseto
✨ Finishing Touches
🧪 Generate unit tests
  • Create PR with unit tests
  • Post copyable unit tests in a comment
  • Commit unit tests in branch DOC-1581

Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share
🪧 Tips

Chat

There are 3 ways to chat with CodeRabbit:

  • Review comments: Directly reply to a review comment made by CodeRabbit. Example:
    • I pushed a fix in commit <commit_id>, please review it.
    • Open a follow-up GitHub issue for this discussion.
  • Files and specific lines of code (under the "Files changed" tab): Tag @coderabbitai in a new review comment at the desired location with your query.
  • PR comments: Tag @coderabbitai in a new PR comment to ask questions about the PR branch. For the best results, please provide a very specific query, as very limited context is provided in this mode. Examples:
    • @coderabbitai gather interesting stats about this repository and render them as a table. Additionally, render a pie chart showing the language distribution in the codebase.
    • @coderabbitai read the files in the src/scheduler package and generate a class diagram using mermaid and a README in the markdown format.

Support

Need help? Create a ticket on our support page for assistance with any issues or questions.

CodeRabbit Commands (Invoked using PR/Issue comments)

Type @coderabbitai help to get the list of available commands.

Other keywords and placeholders

  • Add @coderabbitai ignore anywhere in the PR description to prevent this PR from being reviewed.
  • Add @coderabbitai summary to generate the high-level summary at a specific location in the PR description.
  • Add @coderabbitai anywhere in the PR title to generate the title automatically.

CodeRabbit Configuration File (.coderabbit.yaml)

  • You can programmatically configure CodeRabbit by adding a .coderabbit.yaml file to the root of your repository.
  • Please see the configuration documentation for more information.
  • If your editor has YAML language server enabled, you can add the path at the top of this file to enable auto-completion and validation: # yaml-language-server: $schema=https://coderabbit.ai/integrations/schema.v2.json

Status, Documentation and Community

  • Visit our Status Page to check the current availability of CodeRabbit.
  • Visit our Documentation for detailed information on how to use CodeRabbit.
  • Join our Discord Community to get help, request features, and share feedback.
  • Follow us on X/Twitter for updates and announcements.

Copy link
Copy Markdown
Contributor

@coderabbitai coderabbitai Bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 1

🧹 Nitpick comments (3)
modules/deploy/partials/requirements.adoc (1)

32-41: Add an anchor to enable cross-references from troubleshooting and elsewhere

Adding a stable anchor lets us xref this warning from troubleshooting (and future docs), improving discoverability.

Apply this diff:

+[[@helm-3-18-0-unsupported]]
 [NOTE]
 ====
 Helm v3.18.0 is not supported due to a bug that causes errors such as:
 
 [.no-copy]
 ----
 Error: INSTALLATION FAILED: execution error at (redpanda/templates/entry-point.yaml:17:4): invalid Quantity expected string or float64 got: json.Number (1)
 ----
 
 To avoid this and similar errors, upgrade to Helm v3.18.4 or later. For more details, see the https://github.com/helm/helm/issues/30880[Helm GitHub issue^].
modules/troubleshoot/partials/errors-and-solutions.adoc (2)

11-22: Align version guidance with requirements note and add the other common symptom

  • Aligns “later version” wording to the specific minimum “v3.18.4 or later” used in requirements.
  • Adds the repository-name conflict symptom noted in DOC-1581, so users recognize the issue earlier in the flow.
  • Adds a quick command to verify current Helm version.
  • Optionally cross-links back to the requirements note (if you add the anchor as suggested).

Apply this diff:

 //tag::deployment-helm-3-18[]
 === Helm v3.18.0 is not supported (json.Number error)
 
 If you are using Helm v3.18.0, you may encounter errors such as:
 
 [.no-copy]
 ----
 Error: INSTALLATION FAILED: execution error at (redpanda/templates/entry-point.yaml:17:4): invalid Quantity expected string or float64 got: json.Number (1)
 ----
 
-This is due to a bug in Helm v3.18.0. To avoid similar errors, upgrade to a later version. For more details, see the https://github.com/helm/helm/issues/30880[Helm GitHub issue^].
+This is due to a bug in Helm v3.18.0. To avoid similar errors, upgrade to v3.18.4 or later. For more details, see the https://github.com/helm/helm/issues/30880[Helm GitHub issue^].
+
+You may also see a repository conflict earlier in the process:
+
+[.no-copy]
+----
+Error: repository name (redpanda) already exists, please specify a different name
+----
+
+Check your Helm version:
+
+[,bash]
+----
+helm version
+----
+
+See also: xref:deploy:deployment-option/self-hosted/kubernetes/k-requirements.adoc#helm-3-18-0-unsupported[Requirements note].
 //end::deployment-helm-3-18[]

18-19: Consider future-proofing the example line/column reference

The exact template path and line/column numbers can drift between chart releases. Keeping the error text is valuable; the specific “entry-point.yaml:17:4” may become stale.

If this becomes noisy to maintain, consider eliding the line/column and keeping the salient error:

  • invalid Quantity expected string or float64 got: json.Number (1)
📜 Review details

Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro

💡 Knowledge Base configuration:

  • MCP integration is disabled by default for public repositories
  • Jira integration is disabled by default for public repositories
  • Linear integration is disabled by default for public repositories

You can enable these sources in your CodeRabbit configuration.

📥 Commits

Reviewing files that changed from the base of the PR and between 722b308 and 7bf13b0.

📒 Files selected for processing (2)
  • modules/deploy/partials/requirements.adoc (1 hunks)
  • modules/troubleshoot/partials/errors-and-solutions.adoc (1 hunks)
⏰ Context from checks skipped due to timeout of 90000ms. You can increase the timeout in your CodeRabbit configuration to a maximum of 15 minutes (900000ms). (3)
  • GitHub Check: Redirect rules - redpanda-docs-preview
  • GitHub Check: Header rules - redpanda-docs-preview
  • GitHub Check: Pages changed - redpanda-docs-preview
🔇 Additional comments (2)
modules/deploy/partials/requirements.adoc (1)

32-41: Good addition: clear, actionable warning with concrete error and upstream link

This note concisely warns about Helm v3.18.0 and provides the exact error users may see, plus the upstream issue and a recommended fixed version. This aligns with the PR objectives and should reduce support friction.

modules/troubleshoot/partials/errors-and-solutions.adoc (1)

11-22: Nice placement and tagging

Wrapping this under deployment and with a dedicated tag block is consistent with the rest of the troubleshooting content and makes reuse straightforward.

Comment thread modules/deploy/partials/requirements.adoc Outdated
Comment thread modules/deploy/partials/requirements.adoc Outdated
Copy link
Copy Markdown
Contributor

@Feediver1 Feediver1 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

lgtm

Copy link
Copy Markdown
Contributor

@chrisseto chrisseto left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks Jake!

@JakeSCahill JakeSCahill merged commit 9652a13 into main Aug 15, 2025
7 checks passed
@JakeSCahill JakeSCahill deleted the DOC-1581 branch August 15, 2025 13:47
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

4 participants