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
4 changes: 2 additions & 2 deletions docs/content/contributing/overview/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ Check out the following table to learn where and how you can contribute:

| Repository | Description | Contribution guides |
|------------|-------------|---------------------|
| **Radius** | Main repository that contains source code for [`rad` CLI]((https://github.com/radius-project/radius/blob/main/docs/contributing/contributing-code/contributing-code-cli/running-rad-cli.md)), [control plane]((https://github.com/radius-project/radius/blob/main/docs/contributing/contributing-code/contributing-code-control-plane/README.md)) and other components of Radius | [radius-project/radius](https://github.com/radius-project/radius/blob/main/CONTRIBUTING.md)|
| **Docs** | Documentation for Radius | [radius-project/docs]({{< ref contributing-docs>}})|
| **Recipes** | Commonly used [Recipe](https://docs.radapp.io/recipes) templates for Radius Environments | [radius-project/recipes](https://github.com/radius-project/recipes/blob/main/CONTRIBUTING.md) |(https://github.com/radius-project/recipes/blob/main/CONTRIBUTING.md) |
| **Radius** | Main repository that contains source code for [`rad` CLI](https://github.com/radius-project/radius/blob/main/docs/contributing/contributing-code/contributing-code-cli/README.md), [control plane](https://github.com/radius-project/radius/blob/main/docs/contributing/contributing-code/contributing-code-control-plane/README.md) and other components of Radius | [radius-project/radius](https://github.com/radius-project/radius/blob/main/CONTRIBUTING.md)|
| **Recipes** | Commonly used [Recipe]({{< ref "guides/recipes/overview">}}) templates for Radius Environments | [radius-project/recipes](https://github.com/radius-project/recipes/blob/main/CONTRIBUTING.md) |
| **Dashboard** | The frontend experience for Radius |[radius-project/dashboard](https://github.com/radius-project/dashboard/blob/main/CONTRIBUTING.md) |
| **Bicep** | Temporary fork of the [Bicep repo](https://github.com/azure/bicep) used to inject the Radius types into the Bicep language. Contains both the Bicep CLI and the Bicep VS Code extension. | [radius-project/bicep](https://github.com/radius-project/bicep/blob/radius-compiler/CONTRIBUTING.md) |
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ Connections from a container to a resource result in environment variables for c
Radius Connections are more than just environment variables and configuration. You can also access the "application graph" and understand the connections within your application with the following command:

```bash
rad app connections -a demo
rad app graph -a demo
```

You should see the following output, detailing the connections between the `demo` container and the `db` Redis cache, along with information about the underlying Kubernetes resources running the app:
Expand Down
8 changes: 4 additions & 4 deletions docs/content/tutorials/new-app/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -132,10 +132,10 @@ Radius Applications are where all your app's resources and relationships come to
demo Applications.Core/containers
```

1. Run `rad app connections` again to see the container you just deployed:
1. Run `rad app graph` again to see the container you just deployed:

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

You should see the container you just deployed, along with the underlying Kubernetes resources that were created to run it:
Expand Down Expand Up @@ -262,10 +262,10 @@ In addition to containers, you can add dependencies like Redis caches, Dapr Stat

1. Press CTRL+C to terminate the port-forward and log stream.

1. Run `rad app connections` again to see the new dependency:
1. Run `rad app graph` again to see the new dependency:

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

You should see the container and Mongo database you just deployed, along with the underlying Kubernetes resources that were created to run them:
Expand Down