Skip to content

Commit 86257ce

Browse files
sharkymarkghuntley
andauthored
docs: add contact us form for sales; improve enterprise page (#5459)
Co-authored-by: Geoffrey Huntley <ghuntley@ghuntley.com>
1 parent ca31f1b commit 86257ce

File tree

4 files changed

+33
-26
lines changed

4 files changed

+33
-26
lines changed

docs/admin/upgrade.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,11 @@ curl -L https://coder.com/install.sh | sh
2222
```
2323

2424
The script will unpack the new `coder` binary version over the one currently installed.
25-
Next, you can restart Coder with the following command (if running it as a system
25+
Next, you can restart Coder with the following commands (if running it as a system
2626
service):
2727

2828
```console
29+
systemctl daemon-reload
2930
systemctl restart coder
3031
```
3132

docs/enterprise.md

+20-24
Original file line numberDiff line numberDiff line change
@@ -1,35 +1,31 @@
11
# Enterprise Features
22

33
Coder is free to use and includes some features that are only accessible with a paid license.
4-
Contact sales@coder.com to obtain a license.
5-
6-
### User Management
7-
8-
- [Groups](./admin/groups.md)
9-
- [Template RBAC](./admin/rbac.md)
10-
- [SCIM](./admin/auth.md#scim)
11-
12-
### Networking & Deployment
13-
14-
- [High Availability](./admin/high-availability.md)
15-
- [Browser Only Connections](./networking.md#browser-only-connections)
16-
- [Service Banners](./admin/service-banners.md)
17-
18-
### Other
19-
20-
- [Audit Logging](./admin/audit-logs.md)
21-
- [Quotas](./admin/quotas.md)
22-
23-
### Coming soon
24-
25-
- Multiple Git Provider Authentication
26-
- Max Workspace Auto-Stop
4+
[Contact Sales](https://coder.com/contact) for pricing or [get a free
5+
trial](https://coder.com/trial).
6+
7+
| Category | Feature | Open Source | Enterprise |
8+
| --------------- | --------------------------------------------------------------------------- | :------------: | :--------: |
9+
| User Management | [Groups](./admin/groups.md) | | X |
10+
| User Management | [OIDC](./admin/auth.md) | X<sup>\*</sup> | X |
11+
| User Management | [SCIM](./admin/auth.md#scim) | | X |
12+
| Governance | [Audit Logging](./admin/audit-logs.md) | | X |
13+
| Governance | [Browser Only Connections](./networking.md#browser-only-connections) | | X |
14+
| Governance | [Template Access Control](./admin/rbac.md) | | X |
15+
| Cost Control | [Quotas](./admin/quotas.md) | | X |
16+
| Cost Control | [Max Workspace Auto-Stop](./templates.md#configure-max-workspace-auto-stop) | | X |
17+
| Deployment | [High Availability](./admin/high-availability.md) | | X |
18+
| Deployment | [Service Banners](./admin/service-banners.md) | | X |
19+
| Deployment | [Git Provider Integration](./admin/git-providers.md) | X<sup>\*</sup> | X |
20+
| Deployment | Isolated Terraform Runners | | X |
21+
22+
<sup>\*</sup> Free for up to 20 users
2723

2824
## Adding your license key
2925

3026
### Requirements
3127

32-
- Your license key (contact sales@coder.com if you don't have yours)
28+
- Your license key
3329
- Coder CLI installed
3430

3531
### Instructions

docs/networking.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,8 @@ $ coder server --derp-config-path derpmap.json
8686

8787
The dashboard (and web apps opened through the dashboard) are served from the
8888
coder server, so they can only be geo-distributed with High Availability mode in
89-
our Enterprise Edition. [Reach out to sales](mailto:sales@coder.com) to learn more.
89+
our Enterprise Edition. [Reach out to Sales](https://coder.com/contact) to learn
90+
more.
9091

9192
## Browser-only connections (enterprise)
9293

docs/templates.md

+9
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,15 @@ coder templates create <template-name>
7070
> [examples/](https://github.com/coder/coder/tree/main/examples/templates)
7171
> directory in the repo.
7272
73+
## Configure Max Workspace Auto-Stop
74+
75+
To control cost, specify a maximum time to live flag for a template in hours or
76+
minutes.
77+
78+
```sh
79+
coder templates create my-template --ttl 4h
80+
```
81+
7382
## Customize templates
7483

7584
Example templates are not designed to support every use (e.g

0 commit comments

Comments
 (0)