Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update auto-generated documentation #1080

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
2 changes: 1 addition & 1 deletion docs/content/reference/cli/rad_application.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ Manage Radius Applications
### SEE ALSO

* [rad]({{< ref rad.md >}}) - Radius CLI
* [rad application connections]({{< ref rad_application_connections.md >}}) - Shows the connections for an application.
* [rad application delete]({{< ref rad_application_delete.md >}}) - Delete Radius Application
* [rad application graph]({{< ref rad_application_graph.md >}}) - Shows the application graph for an application.
* [rad application list]({{< ref rad_application_list.md >}}) - List Radius Applications
* [rad application show]({{< ref rad_application_show.md >}}) - Show Radius Application details
* [rad application status]({{< ref rad_application_status.md >}}) - Show Radius Application status
Expand Down
Original file line number Diff line number Diff line change
@@ -1,32 +1,32 @@
---
type: docs
title: "rad application connections CLI reference"
linkTitle: "rad application connections"
slug: rad_application_connections
url: /reference/cli/rad_application_connections/
description: "Details on the rad application connections Radius CLI command"
title: "rad application graph CLI reference"
linkTitle: "rad application graph"
slug: rad_application_graph
url: /reference/cli/rad_application_graph/
description: "Details on the rad application graph Radius CLI command"
---
## rad application connections
## rad application graph

Shows the connections for an application.
Shows the application graph for an application.

### Synopsis

Shows the connections for an application
Shows the application graph for an application.

```
rad application connections [flags]
rad application graph [flags]
```

### Examples

```

# Show connections for current application
rad app connections
# Show graph for current application
rad app graph

# Show connections for specified application
rad app connections my-application
# Show graph for specified application
rad app graph my-application
```

### Options
Expand All @@ -35,7 +35,7 @@ rad app connections my-application
-a, --application string The application name
-e, --environment string The environment name
-g, --group string The resource group name
-h, --help help for connections
-h, --help help for graph
-w, --workspace string The workspace name
```

Expand Down
4 changes: 2 additions & 2 deletions docs/content/tutorials/new-app/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -88,10 +88,10 @@ Radius Applications are where all your app's resources and relationships come to
- **`environment`** specifies the Radius Environment which the Applications "binds" to at deployment. This is what determines where containers should run (_Kubernetes_) and which namespace to deploy into (_prefixed with "default"_). In this case, the application will be deployed into the `default` Environment that was created by `rad init`.
- **`compute`** specifies the hosting platform where running services in the Application will run. In this case, the services will be deployed into the `default-myapp` Kubernetes namespace within the same cluster where Radius is installed.

1. Let's take a look inside the Application to see what's deployed. Run [`rad app connections`]({{< ref rad_application_connections >}}) to print the Application's resources and relationships:
1. Let's take a look inside the Application to see what's deployed. Run [`rad app graph`]({{< ref rad_application_graph >}}) to print the Application's resources and relationships:

```bash
rad app connections
rad app graph
```

You'll see that nothing has been deployed yet and the app is empty:
Expand Down
Loading