Difference between revisions of "Kubectl patch daemonset"

From wikieduonline
Jump to navigation Jump to search
(Removed redirect to Kubectl patch)
Tag: Removed redirect
Line 1: Line 1:
 +
{{lc}}
  
  

Revision as of 13:28, 22 February 2024


Stop DaemonSet by appliying a nodeSelector

  • kubectl patch daemonset <name-of-daemon-set> -p '{"spec": {"template": {"spec": {"nodeSelector": {"non-existing": "true"}}}}}'

Start DaemonSet by removing the nodeSelector :

kubectl patch daemonset <name-of-daemon-set> --type json -p='[{"op": "remove", "path": "/spec/template/spec/nodeSelector/non-existing"}]'


Advertising: