Learn how to reinstall your Vultr Cloud GPU instance to reset it to a clean state while maintaining the same IP address and hostname.
Reinstalling a Vultr Cloud GPU instance wipes the file system, resets all configurations and reinstalls the operating system. Any data available on the instance's file system is permanently deleted and cannot be recovered unless backed up.
Follow this guide to reinstall a Vultr Cloud GPU instance using the Vultr Customer Portal, API, CLI, or Terraform.
Send a GET
request to the List Instances endpoint and note the target instance's ID.
$ curl "https://api.vultr.com/v2/instances" \
-X GET \
-H "Authorization: Bearer ${VULTR_API_KEY}"
Send a POST
request to the Reinstall Instance endpoint to reinstall the instance with a new hostname.
$ curl "https://api.vultr.com/v2/instances/{instance-id}/reinstall" \
-X POST \
-H "Authorization: Bearer ${VULTR_API_KEY}" \
-H "Content-Type: application/json" \
--data '{
"hostname" : "new_instance_hostname"
}'
List all instances in your Vultr account and note the target instance's ID.
$ vultr-cli instance list
Reinstall the instance with a new hostname.
$ vultr-cli instance reinstall --host <new_instance_hostname> <instance_id>
Open your Terraform configuration for the existing Cloud GPU instance.
Trigger a reinstall by replacing the instance during apply.
$ terraform apply -replace=vultr_instance.gpu
Apply the configuration and observe the following output:
Apply complete! Resources: 1 added, 0 changed, 1 destroyed.
No comments yet.