diff --git a/docs/content/reference/cli/rad_application.md b/docs/content/reference/cli/rad_application.md index e1b0fc9cc..d36e417fc 100644 --- a/docs/content/reference/cli/rad_application.md +++ b/docs/content/reference/cli/rad_application.md @@ -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 diff --git a/docs/content/reference/cli/rad_application_connections.md b/docs/content/reference/cli/rad_application_graph.md similarity index 50% rename from docs/content/reference/cli/rad_application_connections.md rename to docs/content/reference/cli/rad_application_graph.md index 8c1c81811..da4e1cbe5 100644 --- a/docs/content/reference/cli/rad_application_connections.md +++ b/docs/content/reference/cli/rad_application_graph.md @@ -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 @@ -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 ``` diff --git a/docs/content/tutorials/new-app/index.md b/docs/content/tutorials/new-app/index.md index ef4103987..c5f26c471 100644 --- a/docs/content/tutorials/new-app/index.md +++ b/docs/content/tutorials/new-app/index.md @@ -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: