Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
56 changes: 56 additions & 0 deletions docs/reference/replicated-cli-app-hostname-ls.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
# replicated app hostname ls

List custom hostnames for an application

### Synopsis

List all custom hostnames configured for an application.

This command fetches and displays all custom hostname configurations including:
- Registry hostnames
- Proxy hostnames
- Download Portal hostnames
- Replicated App hostnames

The app ID or slug can be provided via the --app flag or from the .replicated config file.

```
replicated app hostname ls [flags]
```

### Aliases

```
ls, list
```

### Examples

```
# List all custom hostnames for an app
replicated app hostname ls --app myapp

# List hostnames and output as JSON
replicated app hostname ls --app myapp --output json
```

### Options

```
-h, --help help for ls
-o, --output string The output format to use. One of: json|table (default "table")
```

### Options inherited from parent commands

```
--app string The app slug or app id to use in all calls
--debug Enable debug output
--profile string The authentication profile to use for this command
--token string The API token to use to access your app in the Vendor API
```

### SEE ALSO

* [replicated app hostname](replicated-cli-app-hostname) - Manage custom hostnames for applications

41 changes: 41 additions & 0 deletions docs/reference/replicated-cli-app-hostname.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
# replicated app hostname

Manage custom hostnames for applications

### Synopsis

The hostname command allows you to manage custom hostnames for your application.

This command provides subcommands for listing and viewing custom hostname configurations
including registry, proxy, download portal, and replicated app hostnames.

### Examples

```
# List all custom hostnames for an app
replicated app hostname ls --app myapp

# List hostnames and output as JSON
replicated app hostname ls --app myapp --output json
```

### Options

```
-h, --help help for hostname
```

### Options inherited from parent commands

```
--app string The app slug or app id to use in all calls
--debug Enable debug output
--profile string The authentication profile to use for this command
--token string The API token to use to access your app in the Vendor API
```

### SEE ALSO

* [replicated app](replicated-cli-app) - Manage applications
* [replicated app hostname ls](replicated-cli-app-hostname-ls) - List custom hostnames for an application

1 change: 1 addition & 0 deletions docs/reference/replicated-cli-app.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ replicated app ls --output json

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

2 changes: 2 additions & 0 deletions sidebars.js
Original file line number Diff line number Diff line change
Expand Up @@ -617,6 +617,8 @@ const sidebars = {
'reference/replicated-cli-api-put',
'reference/replicated-cli-app',
'reference/replicated-cli-app-create',
'reference/replicated-cli-app-hostname',
'reference/replicated-cli-app-hostname-ls',
'reference/replicated-cli-app-ls',
'reference/replicated-cli-app-rm',
'reference/replicated-cli-channel',
Expand Down