Skip to content

Commit 2dd8e03

Browse files
authored
Merge pull request #3711 from replicatedhq/update-cli-docs-v0.124.0-2025-12-12-202947
Update Replicated CLI docs for v0.124.0
2 parents 040a0ca + e36d50d commit 2dd8e03

File tree

4 files changed

+100
-0
lines changed

4 files changed

+100
-0
lines changed
Lines changed: 56 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
1+
# replicated app hostname ls
2+
3+
List custom hostnames for an application
4+
5+
### Synopsis
6+
7+
List all custom hostnames configured for an application.
8+
9+
This command fetches and displays all custom hostname configurations including:
10+
- Registry hostnames
11+
- Proxy hostnames
12+
- Download Portal hostnames
13+
- Replicated App hostnames
14+
15+
The app ID or slug can be provided via the --app flag or from the .replicated config file.
16+
17+
```
18+
replicated app hostname ls [flags]
19+
```
20+
21+
### Aliases
22+
23+
```
24+
ls, list
25+
```
26+
27+
### Examples
28+
29+
```
30+
# List all custom hostnames for an app
31+
replicated app hostname ls --app myapp
32+
33+
# List hostnames and output as JSON
34+
replicated app hostname ls --app myapp --output json
35+
```
36+
37+
### Options
38+
39+
```
40+
-h, --help help for ls
41+
-o, --output string The output format to use. One of: json|table (default "table")
42+
```
43+
44+
### Options inherited from parent commands
45+
46+
```
47+
--app string The app slug or app id to use in all calls
48+
--debug Enable debug output
49+
--profile string The authentication profile to use for this command
50+
--token string The API token to use to access your app in the Vendor API
51+
```
52+
53+
### SEE ALSO
54+
55+
* [replicated app hostname](replicated-cli-app-hostname) - Manage custom hostnames for applications
56+
Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
# replicated app hostname
2+
3+
Manage custom hostnames for applications
4+
5+
### Synopsis
6+
7+
The hostname command allows you to manage custom hostnames for your application.
8+
9+
This command provides subcommands for listing and viewing custom hostname configurations
10+
including registry, proxy, download portal, and replicated app hostnames.
11+
12+
### Examples
13+
14+
```
15+
# List all custom hostnames for an app
16+
replicated app hostname ls --app myapp
17+
18+
# List hostnames and output as JSON
19+
replicated app hostname ls --app myapp --output json
20+
```
21+
22+
### Options
23+
24+
```
25+
-h, --help help for hostname
26+
```
27+
28+
### Options inherited from parent commands
29+
30+
```
31+
--app string The app slug or app id to use in all calls
32+
--debug Enable debug output
33+
--profile string The authentication profile to use for this command
34+
--token string The API token to use to access your app in the Vendor API
35+
```
36+
37+
### SEE ALSO
38+
39+
* [replicated app](replicated-cli-app) - Manage applications
40+
* [replicated app hostname ls](replicated-cli-app-hostname-ls) - List custom hostnames for an application
41+

docs/reference/replicated-cli-app.mdx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@ replicated app ls --output json
5050

5151
* [replicated](replicated) - Manage your Commercial Software Distribution Lifecycle using Replicated
5252
* [replicated app create](replicated-cli-app-create) - Create a new application
53+
* [replicated app hostname](replicated-cli-app-hostname) - Manage custom hostnames for applications
5354
* [replicated app ls](replicated-cli-app-ls) - List applications
5455
* [replicated app rm](replicated-cli-app-rm) - Delete an application
5556

sidebars.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -617,6 +617,8 @@ const sidebars = {
617617
'reference/replicated-cli-api-put',
618618
'reference/replicated-cli-app',
619619
'reference/replicated-cli-app-create',
620+
'reference/replicated-cli-app-hostname',
621+
'reference/replicated-cli-app-hostname-ls',
620622
'reference/replicated-cli-app-ls',
621623
'reference/replicated-cli-app-rm',
622624
'reference/replicated-cli-channel',

0 commit comments

Comments
 (0)