charmed-kubernetes / kubernetes-docs

This repository contains the development version of docs for Charmed Kubernetes
7 stars 52 forks source link

Autoscaling docs - taint needs updating #781

Closed VariableDeclared closed 10 months ago

VariableDeclared commented 1 year ago

Hello

When following https://ubuntu.com/kubernetes/docs/autoscaler the taint in that doc is written as

kubectl taint node $NODE juju.is/kubernetes-control-plane=true:NoSchedule-

Although, it appears as of 1.27 this taint has changed, making the correct step to run:

kubectl taint node $NODE node-role.kubernetes.io/control-plane=true:NoSchedule-

Once I ran this above taint removal, I was able to schedule the autoscaler onto my control plane node,

Thanks! Peter

evilnick commented 1 year ago

Cool, thanks for the update