-
Notifications
You must be signed in to change notification settings - Fork 44
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add documentation for Radius Dashboard (#1047)
* add documentation for Radius Dashboard Signed-off-by: Will Tsai <[email protected]> * minor correction Signed-off-by: Will Tsai <[email protected]> * Apply suggestions from code review Co-authored-by: Will Smith <[email protected]> Signed-off-by: Will <[email protected]> * address feedback Signed-off-by: Will Tsai <[email protected]> * spelling corrections Signed-off-by: Will Tsai <[email protected]> --------- Signed-off-by: Will Tsai <[email protected]> Signed-off-by: Will <[email protected]> Co-authored-by: Will Smith <[email protected]>
- Loading branch information
1 parent
a301e62
commit d9edd46
Showing
7 changed files
with
85 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -1233,3 +1233,4 @@ AuthConfig | |
GitAuthConfig | ||
GitAuthConfigPat | ||
SecretConfig | ||
appgraph |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
--- | ||
type: docs | ||
title: "Radius dashboard" | ||
linkTitle: "Dashboard" | ||
description: "Documentation on the Radius dashboard" | ||
weight: 100 | ||
--- |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
--- | ||
type: docs | ||
title: "Overview: Radius Dashboard" | ||
linkTitle: "Overview" | ||
description: "Learn about using the Radius Dashboard to visualize your application graph, environments, and recipes" | ||
weight: 100 | ||
categories: "Overview" | ||
tags: ["dashboard"] | ||
--- | ||
|
||
## What is the Radius Dashboard? | ||
|
||
The Radius Dashboard is the frontend experience for Radius and provides a graphical interface for visualizing your [Application Graph]({{< ref "guides/author-apps/application/overview#query-and-understand-your-application-with-the-radius-application-graph" >}}), [Environments]({{< ref "guides/deploy-apps/environments/overview" >}}), and [Recipes]({{< ref "guides/recipes/overview" >}}). It provides both textual and visual representations of your Radius Applications and resources, as well as a directory of Recipes that are available in each Environment. | ||
|
||
{{< image src="dashboard-home.png" alt="screenshot of an example Radius Dashboard home page" width=800 >}} | ||
|
||
## Built with extensibility in mind | ||
|
||
The Radius Dashboard is built on [Backstage](https://backstage.io/), an open-source platform for building developer portals that provides a rich set of components to accelerate UI development. It is a skinned deployment of Backstage that includes a set of plugins that provide the Radius experience. The components that make up the dashboard are built with extensibility in mind so that they can be used in other contexts beyond Backstage in the future. | ||
|
||
## Key features | ||
|
||
The Radius Dashboard currently provides the following features: | ||
|
||
- **Application graph visualization**: A visualization of the [application graph]({{< ref "guides/author-apps/application/overview#query-and-understand-your-application-with-the-radius-application-graph" >}}) that shows how resources within an application are connected to each other and the underlying infrastructure. | ||
- **Resource overview and details**: Detailed information about resources within Radius, including [applications]({{< ref "guides/author-apps/application/overview" >}}), [environments]({{< ref "guides/deploy-apps/environments/overview" >}}), and infrastructure. | ||
- **Recipes directory**: A listing of all the Radius [Recipes]({{< ref "guides/recipes/overview" >}}) available to the user for a given environment. | ||
|
||
## Installation | ||
|
||
The Radius Dashboard is installed by default as a part of your Radius initialization and deployment. | ||
|
||
{{< alert title="Opting-out" color="warning" >}} | ||
To opt-out of installing the dashboard, you can use the `--set dashboard.enabled=false` flag when running `rad init` or `rad install kubernetes`. See more instructions in the Radius [initialization]({{< ref "installation#step-3-initialize-radius" >}}) and [installation]({{< ref "guides/operations/kubernetes/kubernetes-install" >}}) guides. | ||
{{< /alert >}} | ||
|
||
To remove the dashboard from your existing installation of Radius on your cluster, you can run: | ||
|
||
```bash | ||
rad install kubernetes --reinstall --set dashboard.enabled=false | ||
``` | ||
|
||
## Accessing the Dashboard | ||
|
||
When you run your application with the `rad run` command, Radius creates a port-forward from `localhost` to port `7007` inside the container that you may use to access your Radius Dashboard by visiting [http://localhost:7007](http://localhost:7007) in a browser. | ||
|
||
Alternatively, you can manually create a port-forward from `localhost` to the port number of your choice to provide access to your Radius Dashboard: | ||
|
||
```bash | ||
kubectl port-forward --namespace=radius-system svc/dashboard 7007:80 | ||
``` | ||
|
||
## Reference documentation | ||
|
||
Visit the [API reference documentation]({{< ref "concepts/technical/api" >}}) to learn more about the underlying [Radius Application Graph]({{< ref "guides/author-apps/application/overview#query-and-understand-your-application-with-the-radius-application-graph" >}}) data on which the dashboard visualizations are built. | ||
|
||
To get started with trying the Radius Dashboard, see the [getting started guide]({{< ref "getting-started" >}}): | ||
|
||
{{< button text="Getting started" page="getting-started" >}} |