-
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.
Merge remote-tracking branch 'origin/edge' into jasonviviano/terrafor…
…m-recipes
- Loading branch information
Showing
7 changed files
with
57 additions
and
9 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 |
---|---|---|
@@ -1,7 +1,7 @@ | ||
--- | ||
type: docs | ||
title: "Developing applications" | ||
linkTitle: "Developing applications" | ||
description: "Learn how to develop a Radius application" | ||
title: "Authoring applications" | ||
linkTitle: "Authoring applications" | ||
description: "Learn how to author a Radius application" | ||
weight: 30 | ||
--- |
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: "Deploying applications" | ||
linkTitle: "Deploying applications" | ||
description: "Learn how to deploy a Radius application to an environment" | ||
weight: 40 | ||
--- |
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,41 @@ | ||
--- | ||
type: docs | ||
title: "Overview: Deploying applications into a Radius environment" | ||
linkTitle: "Deploy applications" | ||
description: "Learn how to deploy a Radius application" | ||
weight: 200 | ||
categories: "Overview" | ||
tags: ["deployments"] | ||
--- | ||
|
||
## Run an application | ||
|
||
Once you have [authored an application]({{< ref author-apps >}}), you can run an application using the [`rad run`]({{< ref rad_run >}}) command. | ||
|
||
```bash | ||
rad run app.bicep | ||
``` | ||
|
||
This will deploy the application to your environment, create port-forwards for all container ports, and stream container logs to the console. | ||
|
||
## Deploy an application | ||
|
||
An application can be deployed to an environment with [`rad deploy`]({{< ref rad_deploy>}}): | ||
|
||
```bash | ||
rad deploy app.bicep | ||
``` | ||
This will deploy the application to the created Radius environment. | ||
|
||
### Parameters | ||
|
||
Parameters can be included as part of `rad run` or `rad deploy` via the `-p/--parameters` flag: | ||
|
||
```bash | ||
rad deploy app.bicep -p param1=value1 -p param2=value2 | ||
``` | ||
|
||
This will deploy the application to the created Radius environment injecting the parameters into the application. | ||
|
||
You can find more examples of deploying applications with parameters [here]({{< ref "rad_deploy#examples" >}}). | ||
|
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
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