Thanks to visit codestin.com
Credit goes to github.com

Skip to content
This repository was archived by the owner on Aug 30, 2024. It is now read-only.

Commit 82ce7db

Browse files
committed
add: coder tunnel docs & coder users ls flags
1 parent 3a6edf6 commit 82ce7db

File tree

3 files changed

+46
-7
lines changed

3 files changed

+46
-7
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
[![GitHub Release](https://img.shields.io/github/v/release/cdr/coder-cli?color=6b9ded&include_prerelease=false)](https://github.com/cdr/coder-cli/releases)
44
[![Documentation](https://godoc.org/cdr.dev/coder-cli?status.svg)](https://pkg.go.dev/cdr.dev/coder-cli/coder-sdk)
55

6-
> **Note**: This is the command line utility for [Coder Classic](https://coder.com/docs/coder).
6+
> **Note**: This is the command line utility for [Coder v1](https://coder.com/docs/coder).
77
> If you are using [Coder OSS](https://coder.com/docs/coder-oss/latest), use [these instructions](https://coder.com/docs/coder-oss/latest/install)
88
> to install the CLI.
99

docs/coder_tunnel.md

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
## coder tunnel
2+
3+
proxies a port on the workspace to localhost
4+
5+
```console
6+
coder tunnel [workspace_name] [workspace_port] [localhost_port] [flags]
7+
```
8+
9+
### Examples
10+
11+
```console
12+
# run a tcp tunnel from the workspace on port 3000 to localhost:3000
13+
coder tunnel my-dev 3000 3000
14+
15+
# run a udp tunnel from the workspace on port 53 to localhost:53
16+
coder tunnel --udp my-dev 53 53
17+
```
18+
19+
### Options
20+
21+
```console
22+
--address string local address to bind to (default "127.0.0.1")
23+
-h, --help help for tunnel
24+
--max-retry-duration duration maximum amount of time to sleep between retry attempts (default 1m0s)
25+
--retry int number of attempts to retry if the tunnel fails to establish or disconnect (-1 for infinite retries)
26+
--udp tunnel over UDP instead of TCP
27+
```
28+
29+
### Options inherited from parent commands
30+
31+
```console
32+
--coder-token string API authentication token.
33+
--coder-url string access url of the Coder deployment. (default "https://demo-2.cdr.dev")
34+
-v, --verbose show verbose output (also settable via CODER_AGENT_VERBOSE) (default true)
35+
```

docs/coder_users_ls.md

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,31 +2,35 @@
22

33
list all user accounts
44

5-
```
5+
```console
66
coder users ls [flags]
77
```
88

99
### Examples
1010

11-
```
11+
```console
1212
coder users ls -o json
1313
coder users ls -o json | jq .[] | jq -r .email
1414
```
1515

1616
### Options
1717

18-
```
18+
```console
19+
--after string returns users in the list after the specified ID
20+
--before string returns users in the list before the specified ID
1921
-h, --help help for ls
22+
--limit int maximum number of users to return (default 100)
2023
-o, --output string human | json (default "human")
2124
```
2225

2326
### Options inherited from parent commands
2427

25-
```
28+
```console
29+
--coder-token string API authentication token.
30+
--coder-url string access url of the Coder deployment. (default "https://demo-2.cdr.dev")
2631
-v, --verbose show verbose output
2732
```
2833

2934
### SEE ALSO
3035

31-
* [coder users](coder_users.md) - Interact with Coder user accounts
32-
36+
* [coder users](coder_users.md) - Interact with Coder user accounts

0 commit comments

Comments
 (0)