Skip to content

Commit 749ccd8

Browse files
authored
Fix kured installation instructions
Running the last instruction for installing `kured` seems to be failing on Ubuntu 22.04: ```bash helm install my-release kubereboot/kured --namespace kured --set nodeSelector."kubernetes.io/os=linux" Error: INSTALLATION FAILED: unable to build kubernetes objects from release manifest: error validating "": error validating data: ValidationError(DaemonSet.spec.template.spec.nodeSelector.kubernetes): invalid type for io.k8s.api.core.v1.PodSpec.nodeSelector: got "map", expected "string ``` Following [these instructions](rancher/rancher#13723) resolves the issue.
1 parent 8a986e9 commit 749ccd8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

articles/aks/node-updates-kured.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ helm repo update
6767
kubectl create namespace kured
6868

6969
# Install kured in that namespace with Helm 3 (only on Linux nodes, kured is not working on Windows nodes)
70-
helm install my-release kubereboot/kured --namespace kured --set nodeSelector."kubernetes.io/os"=linux
70+
helm install my-release kubereboot/kured --namespace kured --set controller.nodeSelector."kubernetes.io/os"=linux
7171
```
7272

7373
You can also configure additional parameters for `kured`, such as integration with Prometheus or Slack. For more information about additional configuration parameters, see the [kured Helm chart][kured-install].

0 commit comments

Comments
 (0)