DigitalOceanPHP / Client

DigitalOcean API v2 client for PHP
MIT License
710 stars 205 forks source link

[4.8] Add support to disable installation of DO agent #322

Closed dbfx closed 11 months ago

dbfx commented 11 months ago

The DigitalOcean agent gets installed automatically, but can be disabled via API by sending:

"with_droplet_agent":false

This adds a bool $disable_agent to turn that on, as the default is to install it.

This speeds up launching of droplets, specifically in situations where you are only using them for a short amount of time.

GrahamCampbell commented 11 months ago

Thanks.