Pod Lifecycle
Pods have the following statuses:Start / Stop / Restart
- Dashboard
- CLI
- API
On the pod detail page, use the action buttons in the header to Start, Stop, or Restart your pod.
Resize
Change the CPU, memory, or disk allocation of a running pod.- CLI
- API
--plan flag is required. Resources (CPU, memory, disk) are automatically set based on the target plan.Delete
Deleting a pod permanently removes the container and all its data.- Dashboard
- CLI
- API
Go to the pod detail page, click the delete button, and confirm.
List Pods
- CLI
- API
Get Pod Details
- CLI
- API
Reload Application
Restart the application service inside the pod without restarting the container itself. Useful after deploying new code.- Static: Reloads nginx
- PHP: Restarts nginx and PHP-FPM
- Node.js: Restarts the
appsystemd service - Python: Restarts the
appsystemd service
package.json (Node.js) or requirements.txt (Python) is present, npm install or pip install runs before restarting the service.