You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
docs: follow the chart rename and fix the verification selector
The chart directory and name became node-readiness-controller in kubernetes-sigs#407,
so the install, upgrade and uninstall commands in the Helm section needed
updating along with the path to the bundled CRD.
Also fixes the selector in Verification. It looked for
component=node-readiness-controller, and nothing sets a component label,
not the chart and not the kustomize manifests, so the command matched no
pods on either path. Both set control-plane=controller-manager, so use
that. A reader following the new Helm section lands on those commands
straight after installing.
Signed-off-by: tejassinghbhati <tejassinghbhati077@gmail.com>
Copy file name to clipboardExpand all lines: docs/book/src/user-guide/installation.md
+11-11Lines changed: 11 additions & 11 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -64,13 +64,13 @@ docker pull $REPO:$TAG
64
64
```
65
65
### Option 2: Helm Chart
66
66
67
-
The chart lives in the repository under `charts/nrr-controller`. Published chart releases via `registry.k8s.io` OCI are still work in progress, so install it from a checkout for now.
67
+
The chart lives in the repository under `charts/node-readiness-controller`. Published chart releases via `registry.k8s.io` OCI are still work in progress, so install it from a checkout for now.
@@ -99,7 +99,7 @@ Everything beyond the core controller is opt-in, matching the kustomize componen
99
99
The webhook rejects rules whose taint key and effect collide with an existing rule over an overlapping node selector, so it is worth enabling in production.
Skipping this leaves the old schema in place, and rules using newly added fields are rejected by the API server even though the controller supports them.
@@ -230,13 +230,13 @@ After installation, verify that the controller is running successfully.
230
230
231
231
1. **Check Pod Status**:
232
232
```sh
233
-
kubectl get pods -n ${NAMESPACE} -l component=node-readiness-controller
233
+
kubectl get pods -n ${NAMESPACE} -l control-plane=controller-manager
234
234
```
235
235
You should see the controller pods in `Running` status.
0 commit comments