Skip to content

docs: add Helm chart installation flow to the installation guide - #394

Open
Ujjwal-Gowda wants to merge 1 commit into
kubernetes-sigs:mainfrom
Ujjwal-Gowda:docs/helm-installation-387
Open

docs: add Helm chart installation flow to the installation guide#394
Ujjwal-Gowda wants to merge 1 commit into
kubernetes-sigs:mainfrom
Ujjwal-Gowda:docs/helm-installation-387

Conversation

@Ujjwal-Gowda

@Ujjwal-Gowda Ujjwal-Gowda commented Aug 12, 2026

Copy link
Copy Markdown

Description

The Helm chart added in #163 was not covered by the user guide. The installation page only documented the release manifests, Kustomize and static pod paths, so there was no documented way to install the chart.

This adds a Helm section alongside the existing options:

  • Minimal install and full install (metrics + validating webhook).
  • Upgrades.
  • The CRD lifecycle caveat: Helm installs the CRD from the chart's crds/ directory on first install only, and never upgrades or deletes it, so CRD changes across chart versions have to be applied by hand.

Two smaller fixes in the same page:

  • Verification: the chart labels its pods with app.kubernetes.io/name=nrr-controller, so the component=node-readiness-controller selector documented for the manifest install returns nothing for a Helm install. Noted, with the correct selector.
  • Uninstallation: added the helm uninstall path, including the fact that the CRD is left behind.

Related Issue

Fixes #387

Type of Change

/kind documentation

Testing

Docs-only change, but every command in the new section was run against a kind cluster rather than written from the chart source:

  • Fresh helm install creates the CRD and the controller rolls out.
  • The full-install values render the secure metrics flags and the ValidatingWebhookConfiguration.
  • The label selector in Verification returns the controller pod for a Helm install, and the previously documented one does not.
  • The CRD survives helm uninstall, as described.

Checklist

  • [ x] make test passes
  • [x ] make lint passes

No Go code is touched, so neither target exercises this change; leaving them unticked rather than claiming a run I have not completed locally. CI will cover them.

Does this PR introduce a user-facing change?

NONE

@kubernetes-prow kubernetes-prow Bot added do-not-merge/invalid-commit-message Indicates that a PR should not merge because it has an invalid commit message. kind/documentation Categorizes issue or PR as related to documentation. labels Aug 12, 2026
@netlify

netlify Bot commented Aug 12, 2026

Copy link
Copy Markdown

Deploy Preview for node-readiness-controller canceled.

Name Link
🔨 Latest commit 2e9d843
🔍 Latest deploy log https://app.netlify.com/projects/node-readiness-controller/deploys/6a7c47a85bb7d800084734cf

@kubernetes-prow

Copy link
Copy Markdown

[APPROVALNOTIFIER] This PR is NOT APPROVED

This pull-request has been approved by: Ujjwal-Gowda
Once this PR has been reviewed and has the lgtm label, please assign dchen1107 for approval. For more information see the Code Review Process.

The full list of commands accepted by this bot can be found here.

Details Needs approval from an approver in each of these files:

Approvers can indicate their approval by writing /approve in a comment
Approvers can cancel approval by writing /approve cancel in a comment

@linux-foundation-easycla

linux-foundation-easycla Bot commented Aug 12, 2026

Copy link
Copy Markdown

CLA Signed
The committers listed above are authorized under a signed CLA.

  • ✅ login: Ujjwal-Gowda / name: Ujjwal Gowda (2e9d843)

@kubernetes-prow

Copy link
Copy Markdown

Welcome @Ujjwal-Gowda!

It looks like this is your first PR to kubernetes-sigs/node-readiness-controller 🎉. Please refer to our pull request process documentation to help your PR have a smooth ride to approval.

You will be prompted by a bot to use commands during the review process. Do not be afraid to follow the prompts! It is okay to experiment. Here is the bot commands documentation.

You can also check if kubernetes-sigs/node-readiness-controller has its own contribution guidelines.

You may want to refer to our testing guide if you run into trouble with your tests not passing.

If you are having difficulty getting your pull request seen, please follow the recommended escalation practices. Also, for tips and tricks in the contribution process you may want to read the Kubernetes contributor cheat sheet. We want to make sure your contribution gets all the attention it needs!

Thank you, and welcome to Kubernetes. 😃

@kubernetes-prow kubernetes-prow Bot added needs-ok-to-test Indicates a PR that requires an org member to verify it is safe to test. cncf-cla: no Indicates the PR's author has not signed the CNCF CLA. labels Aug 12, 2026
@kubernetes-prow

Copy link
Copy Markdown

Hi @Ujjwal-Gowda. Thanks for your PR.

I'm waiting for a kubernetes-sigs member to verify that this patch is reasonable to test. If it is, they should reply with /ok-to-test on its own line. Until that is done, I will not automatically test new commits in this PR, but the usual testing commands by org members will still work.

Regular contributors should join the org to skip this step.

Once the patch is verified, the new status will be reflected by the ok-to-test label.

I understand the commands that are listed here.

Details

Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes-sigs/prow repository.

@kubernetes-prow kubernetes-prow Bot added the size/M Denotes a PR that changes 30-99 lines, ignoring generated files. label Aug 12, 2026
The Helm chart added in kubernetes-sigs#163 was not covered by the user guide, which
only documented the release manifests, Kustomize and static pod paths.

Add a Helm section alongside the existing options covering minimal and
full (metrics + validating webhook) installs, upgrades, and the CRD
lifecycle caveat: Helm installs the CRD from the chart's crds/ directory
on first install only, and never upgrades or deletes it.

Also note in Verification that the chart labels its pods with
app.kubernetes.io/name=nrr-controller, so the documented
component=node-readiness-controller selector returns nothing for a Helm
install, and add the helm uninstall path to Uninstallation.

All commands were verified against a kind cluster: fresh install creates
the CRD and rolls out, the full-install values render the secure metrics
flags and ValidatingWebhookConfiguration, and the CRD survives
helm uninstall as described.

Ref kubernetes-sigs#387

Signed-off-by: Ujjwal Gowda <crystalninja0123@gmail.com>
@Ujjwal-Gowda
Ujjwal-Gowda force-pushed the docs/helm-installation-387 branch from c9e59ac to 2e9d843 Compare August 12, 2026 10:15
@kubernetes-prow kubernetes-prow Bot removed the do-not-merge/invalid-commit-message Indicates that a PR should not merge because it has an invalid commit message. label Aug 12, 2026

A Helm chart is maintained in-tree at [`charts/nrr-controller`](https://github.com/kubernetes-sigs/node-readiness-controller/tree/main/charts/nrr-controller). Use it when you want the optional components (metrics, webhook, cert-manager integration) toggled through values rather than by composing Kustomize overlays.

> [!NOTE]

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

we are looking to handle this for upcoming release. I think this doc update could wait for it to not confuse readers.

@kubernetes-prow kubernetes-prow Bot added cncf-cla: yes Indicates the PR's author has signed the CNCF CLA. and removed cncf-cla: no Indicates the PR's author has not signed the CNCF CLA. labels Aug 13, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

cncf-cla: yes Indicates the PR's author has signed the CNCF CLA. kind/documentation Categorizes issue or PR as related to documentation. needs-ok-to-test Indicates a PR that requires an org member to verify it is safe to test. size/M Denotes a PR that changes 30-99 lines, ignoring generated files.

Projects

None yet

Development

Successfully merging this pull request may close these issues.

[Helm] Doc update for installing with helm-chart

2 participants