mirror of
https://github.com/coder/coder.git
synced 2025-07-12 00:14:10 +00:00
Fixes https://github.com/coder/coder/issues/15515 This change effectively reverts the changes introduced by https://github.com/coder/coder/pull/13182 (for https://github.com/coder/coder/issues/13078). We also rename the `override-stop` command name to `extend` to match the API endpoint's name (keeping an alias to allow `override-stop` to be used).
27 lines
497 B
Markdown
Generated
27 lines
497 B
Markdown
Generated
<!-- DO NOT EDIT | GENERATED CONTENT -->
|
|
|
|
# schedule extend
|
|
|
|
Extend the stop time of a currently running workspace instance.
|
|
|
|
Aliases:
|
|
|
|
- override-stop
|
|
|
|
## Usage
|
|
|
|
```console
|
|
coder schedule extend <workspace-name> <duration from now>
|
|
```
|
|
|
|
## Description
|
|
|
|
```console
|
|
|
|
* The new stop time is calculated from *now*.
|
|
* The new stop time must be at least 30 minutes in the future.
|
|
* The workspace template may restrict the maximum workspace runtime.
|
|
|
|
$ coder schedule extend my-workspace 90m
|
|
```
|