Akamai Connected Cloud - ### CLI Version linode-cli v5.56.2 Built from spec version 4.176.0 ### Command linode-cli linodes rebuild ### Output Request failed: 400 errors ┌───────┬──────────────────────────────────────────────┐ │ field │ reason │ ├───────┼──────────────────────────────────────────────┤ │ │ Linode is already running this service plan.

## The fix

The 400 'Linode is already running this service plan' happens when you run linode-cli linodes rebuild while passing the same type (plan) value the instance was created with. The UI only sends image on rebuild; the CLI accepts both image and type, but passing an unchanged type errors out. To rebuild without changing the plan, pass only the image value and omit type. To change the plan, use the resize option instead (linode-cli linodes resize), not rebuild. The image+type combo only works when type actually changes.

Thread: gh:linode/linode-cli#890