docs: ui option for adding licenses (#9322)

This commit is contained in:
sharkymark 2023-08-24 22:23:59 -05:00 committed by GitHub
parent 7ddb216d87
commit 4bed492012
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 26 additions and 3 deletions

View File

@ -20,11 +20,20 @@ paid license. [Contact Sales](https://coder.com/contact) for pricing or
| Deployment | [Isolated Terraform Runners](./admin/provisioners.md) | ❌ | ✅ |
| Deployment | [Workspace Proxies](./admin/workspace-proxies.md) | ❌ | ✅ |
> Previous plans to restrict OIDC and Git Auth features in OSS have been removed
> as of 2023-01-11
## Adding your license key
There are two ways to add an enterprise license to a Coder deployment: In the
Coder UI or with the Coder CLI.
### Coder UI
Click Deployment, Licenses, Add a license then drag or select the license file
with the `jwt` extension.
![Add License UI](./images/add-license-ui.png)
### Coder CLI
### Requirements
- Your license key

Binary file not shown.

After

Width:  |  Height:  |  Size: 56 KiB

View File

@ -7,5 +7,8 @@
},
"devDependencies": {
"prettier": "3.0.0"
},
"dependencies": {
"exec": "^0.2.1"
}
}

View File

@ -4,6 +4,11 @@ settings:
autoInstallPeers: true
excludeLinksFromLockfile: false
dependencies:
exec:
specifier: ^0.2.1
version: 0.2.1
devDependencies:
prettier:
specifier: 3.0.0
@ -11,6 +16,12 @@ devDependencies:
packages:
/exec@0.2.1:
resolution: {integrity: sha512-lE5ZlJgRYh+rmwidatL2AqRA/U9IBoCpKlLriBmnfUIrV/Rj4oLjb63qZ57iBCHWi5j9IjLt5wOWkFYPiTfYAg==}
engines: {node: '>= v0.9.1'}
deprecated: deprecated in favor of builtin child_process.execFile
dev: false
/prettier@3.0.0:
resolution: {integrity: sha512-zBf5eHpwHOGPC47h0zrPyNn+eAEIdEzfywMoYn2XPi0P44Zp0tSq64rq0xAREh4auw2cJZHo9QUob+NqCQky4g==}
engines: {node: '>=14'}