Skip to content

Commit

Permalink
Merge branch 'edge' into reference-cli/patch-8eb7f7b437e0bba609b618b3…
Browse files Browse the repository at this point in the history
…8bfc556a22771f38
  • Loading branch information
Reshrahim authored Jan 8, 2025
2 parents 84866af + 743847b commit 10bbee4
Show file tree
Hide file tree
Showing 19 changed files with 34 additions and 34 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ eksctl create cluster --name <my-cluster> --region=<my-region>

Create a [Radius Environment]({{< ref "/guides/deploy-apps/environments/overview" >}}) where you will deploy your application.

Run [`rad init --full`]({{< ref rad_init >}}) to initialize a new environment into your current kubectl context:
Run [`rad init --full`]({{< ref rad_initialize >}}) to initialize a new environment into your current kubectl context:

```bash
rad init --full
Expand Down Expand Up @@ -105,7 +105,7 @@ This creates a container that will be deployed to your Kubernetes cluster. This

## Step 7: Cleanup

1. When you're done with testing, you can use the rad CLI to [delete an environment]({{< ref rad_env_delete.md >}}) to delete all Radius resources running on the EKS Cluster.
1. When you're done with testing, you can use the rad CLI to [delete an environment]({{< ref rad_environment_delete.md >}}) to delete all Radius resources running on the EKS Cluster.
1. Cleanup AWS Resources - AWS resources are not deleted when deleting a Radius Environment, so make sure to delete all resources created in this reference app to prevent additional charges. You can delete these resources in the AWS Console or via the AWS CLI. Instructions to delete an AWS S3 Bucket are available [here](https://docs.aws.amazon.com/AmazonS3/latest/userguide/delete-bucket.html).
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ The steps below will showcase a "rad-ified" version of the existing [Azure AD wo

## Step 1: Initialize Radius

Begin by running [`rad init --full`]({{< ref rad_init >}}). Make sure to configure an Azure cloud provider:
Begin by running [`rad init --full`]({{< ref rad_initialize >}}). Make sure to configure an Azure cloud provider:

```bash
rad init --full
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ This how-to guide will provide an overview of how to:

## Step 1: Initialize Radius

Begin by running [`rad init --full`]({{< ref rad_init >}}). Make sure to configure an Azure cloud provider:
Begin by running [`rad init --full`]({{< ref rad_initialize >}}). Make sure to configure an Azure cloud provider:

```bash
rad init --full
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ Radius Environments can be setup with the rad CLI via two paths: interactive or

## Create a development environment

1. Initialize a new [Radius Environment]({{< ref "/guides/deploy-apps/environments/overview">}}) with [`rad init`]({{< ref rad_init >}}):
1. Initialize a new [Radius Environment]({{< ref "/guides/deploy-apps/environments/overview">}}) with [`rad init`]({{< ref rad_initialize >}}):
```bash
rad init
```
Expand Down Expand Up @@ -55,7 +55,7 @@ Radius Environments can be setup with the rad CLI via two paths: interactive or
contour-contour 1/1 1 1 46s
```

You can also use [`rad env list`]({{< ref rad_env_list.md >}}) to view your environment:
You can also use [`rad env list`]({{< ref rad_environment_list.md >}}) to view your environment:

```bash
rad env list
Expand All @@ -75,7 +75,7 @@ Radius Environments can be setup with the rad CLI via two paths: interactive or

## Create an environment interactively

1. Initialize a new environment with [`rad init --full`]({{< ref rad_init >}}):
1. Initialize a new environment with [`rad init --full`]({{< ref rad_initialize >}}):

```bash
rad init --full
Expand Down Expand Up @@ -120,7 +120,7 @@ Radius Environments can be setup with the rad CLI via two paths: interactive or
contour-contour 1/1 1 1 2m33s
```

1. Verify an environment was created with [`rad env show`]({{< ref rad_env_show.md >}}):
1. Verify an environment was created with [`rad env show`]({{< ref rad_environment_show.md >}}):

```bash
rad env show -o json
Expand Down Expand Up @@ -185,7 +185,7 @@ Radius can also be installed and an environment created with manual rad CLI comm
1. Create your Radius Environment:
Run [`rad env create`]({{< ref rad_env_create >}}) to create a new environment in your resource group. Specify the `--namespace` flag to select the Kubernetes namespace to deploy resources into:
Run [`rad env create`]({{< ref rad_environment_create >}}) to create a new environment in your resource group. Specify the `--namespace` flag to select the Kubernetes namespace to deploy resources into:
```bash
rad env create myEnvironment --group myGroup --namespace my-namespace
Expand Down Expand Up @@ -213,7 +213,7 @@ Radius can also be installed and an environment created with manual rad CLI comm
contour-contour 1/1 1 1 2m33s
```

You can also use [`rad env list`]({{< ref rad_env_list.md >}}) to see if the created environment gets listed:
You can also use [`rad env list`]({{< ref rad_environment_list.md >}}) to see if the created environment gets listed:

```bash
rad env list --group myGroup
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -60,31 +60,31 @@ rad init
{{% /codetab %}}

{{% codetab %}}
[rad env list]({{< ref rad_env_list >}}) lists all of the environments in your [workspace]({{< ref workspaces >}}):
[rad env list]({{< ref rad_environment_list >}}) lists all of the environments in your [workspace]({{< ref workspaces >}}):

```bash
rad env list
```
{{% /codetab %}}

{{% codetab %}}
[rad env show]({{< ref rad_env_show >}}) prints information on the default or specified environment:
[rad env show]({{< ref rad_environment_show >}}) prints information on the default or specified environment:

```bash
rad env show
```
{{% /codetab %}}

{{% codetab %}}
[rad env delete]({{< ref rad_env_delete >}}) deletes the specified environment:
[rad env delete]({{< ref rad_environment_delete >}}) deletes the specified environment:

```bash
rad env delete -e myenv
```
{{% /codetab %}}

{{% codetab %}}
[rad env switch]({{< ref rad_env_switch >}}) switches the default environment:
[rad env switch]({{< ref rad_environment_switch >}}) switches the default environment:

```bash
rad env switch -e myenv
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ The AWS provider allows you to deploy and connect to AWS resources from a Radius

## Interactive configuration

1. Initialize a new environment with [`rad init --full`]({{< ref rad_init >}}):
1. Initialize a new environment with [`rad init --full`]({{< ref rad_initialize >}}):

```bash
rad init --full
Expand Down Expand Up @@ -62,7 +62,7 @@ The AWS provider allows you to deploy and connect to AWS resources from a Radius
rad env update myEnvironment --aws-region myAwsRegion --aws-account-id myAwsAccountId
```
This command updates the configuration of an environment for properties that are able to be changed. For more information visit [`rad env update`]({{< ref rad_env_update >}})
This command updates the configuration of an environment for properties that are able to be changed. For more information visit [`rad env update`]({{< ref rad_environment_update >}})
1. Add your AWS cloud provider credentials:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ Now that the setup is complete, you can install Radius with AWS IRSA enabled.
## Interactive configuration
1. Initialize a new environment with [`rad init --full`]({{< ref rad_init >}}):
1. Initialize a new environment with [`rad init --full`]({{< ref rad_initialize >}}):
```bash
rad init --full
Expand Down Expand Up @@ -127,7 +127,7 @@ Now that the setup is complete, you can install Radius with AWS IRSA enabled.
rad env create default
```
1. Use [`rad env update`]({{< ref rad_env_update >}}) to update your Radius Environment with your your AWS region and AWS account ID:
1. Use [`rad env update`]({{< ref rad_environment_update >}}) to update your Radius Environment with your your AWS region and AWS account ID:
```bash
rad env update myEnvironment --aws-region myAwsRegion --aws-account-id myAwsAccountId
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ The Azure provider allows you to deploy and connect to Azure resources from a se

## Interactive configuration

1. Initialize a new environment with [`rad init --full`]({{< ref rad_init >}}):
1. Initialize a new environment with [`rad init --full`]({{< ref rad_initialize >}}):

```bash
rad init --full
Expand Down Expand Up @@ -66,7 +66,7 @@ The Azure provider allows you to deploy and connect to Azure resources from a se
## Manual configuration
1. Use [`rad env update`]({{< ref rad_env_update >}}) to update your Radius Environment with your Azure subscription ID and Azure resource group:
1. Use [`rad env update`]({{< ref rad_environment_update >}}) to update your Radius Environment with your Azure subscription ID and Azure resource group:
```bash
rad env update myEnvironment --azure-subscription-id myAzureSubscriptionId --azure-resource-group myAzureResourceGroup
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ Now that the setup is complete, you can now install Radius with Azure workload i

## Interactive configuration

1. Initialize a new environment with [`rad init --full`]({{< ref rad_init >}}):
1. Initialize a new environment with [`rad init --full`]({{< ref rad_initialize >}}):

```bash
rad init --full
Expand Down Expand Up @@ -82,7 +82,7 @@ Now that the setup is complete, you can now install Radius with Azure workload i
rad env create default
```
1. Use [`rad env update`]({{< ref rad_env_update >}}) to update your Radius Environment with your Azure subscription ID and Azure resource group:
1. Use [`rad env update`]({{< ref rad_environment_update >}}) to update your Radius Environment with your Azure subscription ID and Azure resource group:
```bash
rad env update myEnvironment --azure-subscription-id myAzureSubscriptionId --azure-resource-group myAzureResourceGroup
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ When you have multiple environments initialized for different purposes workspace
rad group create mygroup
```

1. Create an environment named `myenvironment` using [`rad env create`]({{< ref rad_env_create >}}):
1. Create an environment named `myenvironment` using [`rad env create`]({{< ref rad_environment_create >}}):

```sh
rad env create myenvironment
Expand All @@ -47,7 +47,7 @@ When you have multiple environments initialized for different purposes workspace
rad group create yourgroup
```

1. Create an environment named `yourenvironment` using [`rad env create`]({{< ref rad_env_create >}}):
1. Create an environment named `yourenvironment` using [`rad env create`]({{< ref rad_environment_create >}}):

```sh
rad env create yourenvironment
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -69,4 +69,4 @@ rad env delete my-env
- [Recipes overview]({{< ref "/guides/recipes/overview" >}})
- [Radius Environments]({{< ref "/guides/deploy-apps/environments/overview" >}})
- [`rad recipe CLI reference`]({{< ref rad_recipe >}})
- [`rad env CLI reference`]({{< ref rad_env >}})
- [`rad env CLI reference`]({{< ref rad_environment >}})
2 changes: 1 addition & 1 deletion docs/content/guides/recipes/overview/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ Use [**rad recipe list**]({{< ref rad_recipe_list >}}) to view the Recipes avail

### Use lightweight "local-dev" Recipes

Radius Environments make it easy to get up and running with Recipes instantly. When you run [`rad init`]({{< ref rad_init >}}) you get a set of containerized local-dev Recipes pre-registered in your environment. These Recipes are designed to help you get started quickly with Recipes using lightweight containers. You can use these Recipes to test your app locally, or deploy them to a dev environment.
Radius Environments make it easy to get up and running with Recipes instantly. When you run [`rad init`]({{< ref rad_initialize >}}) you get a set of containerized local-dev Recipes pre-registered in your environment. These Recipes are designed to help you get started quickly with Recipes using lightweight containers. You can use these Recipes to test your app locally, or deploy them to a dev environment.

### Customize with parameters

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -84,4 +84,4 @@ rad env delete my-env
- [Recipes overview]({{< ref "/guides/recipes/overview" >}})
- [Radius Environments]({{< ref "/guides/deploy-apps/environments/overview" >}})
- [`rad recipe CLI reference`]({{< ref rad_recipe >}})
- [`rad env CLI reference`]({{< ref rad_env >}})
- [`rad env CLI reference`]({{< ref rad_environment >}})
Original file line number Diff line number Diff line change
Expand Up @@ -79,4 +79,4 @@ rad env delete my-env
- [Recipes overview]({{< ref "/guides/recipes/overview" >}})
- [Radius Environments]({{< ref "/guides/deploy-apps/environments/overview" >}})
- [`rad recipe CLI reference`]({{< ref rad_recipe >}})
- [`rad env CLI reference`]({{< ref rad_env >}})
- [`rad env CLI reference`]({{< ref rad_environment >}})
2 changes: 1 addition & 1 deletion docs/content/tutorials/new-app/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ By the end of the tutorial, you will have created and deployed a new Radius Appl
cd myapp
```

1. Initialize a new Radius Environment with [`rad init`]({{< ref rad_init >}}):
1. Initialize a new Radius Environment with [`rad init`]({{< ref rad_initialize >}}):

```bash
rad init
Expand Down
2 changes: 1 addition & 1 deletion docs/content/tutorials/tutorial-recipe/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -287,7 +287,7 @@ This step requires an Azure subscription or an AWS account to deploy cloud resou

## Step 5: Cleanup your environment

1. You can use the rad CLI to [delete your environment]({{< ref rad_env_delete.md >}}) and all the Radius resources running on your cluster:
1. You can use the rad CLI to [delete your environment]({{< ref rad_environment_delete.md >}}) and all the Radius resources running on your cluster:

```bash
rad env delete default --yes
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Initializing Radius installs the Radius control-plane and creates a Radius Envir
kubectl config current-context
```

1. Initialize a new [Radius Environment]({{< ref "/guides/deploy-apps/environments/overview">}}) with [`rad init`]({{< ref rad_init >}}):
1. Initialize a new [Radius Environment]({{< ref "/guides/deploy-apps/environments/overview">}}) with [`rad init`]({{< ref rad_initialize >}}):

```bash
rad init
Expand Down Expand Up @@ -49,7 +49,7 @@ Initializing Radius installs the Radius control-plane and creates a Radius Envir
contour-contour 1/1 1 1 46s
```

You can also use [`rad env list`]({{< ref rad_env_list.md >}}) to view your environment:
You can also use [`rad env list`]({{< ref rad_environment_list.md >}}) to view your environment:

```bash
rad env list
Expand Down
2 changes: 1 addition & 1 deletion holding-pen/reference-apps/aws-rds/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ The setup here ensures that the RDS instance is deployed to the set of subnets a
## Cleanup

{{% alert title="Delete environment" color="warning" %}}
If you're done with testing, you can use the rad CLI to [delete an environment]({{< ref rad_env_delete.md >}}) to delete all Radius resources running on the EKS Cluster.
If you're done with testing, you can use the rad CLI to [delete an environment]({{< ref rad_environment_delete.md >}}) to delete all Radius resources running on the EKS Cluster.
{{% /alert %}}
{{% alert title="Cleanup AWS Resources" color="warning" %}}
Expand Down
2 changes: 1 addition & 1 deletion holding-pen/reference-apps/aws-sqs/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ This application models two http services: (1) `producer` and (2) `consumer` tha
## Cleanup

{{% alert title="Delete environment" color="warning" %}}
If you're done with testing, you can use the rad CLI to [delete an environment]({{< ref rad_env_delete.md >}}) to delete all Radius resources running on the EKS Cluster.
If you're done with testing, you can use the rad CLI to [delete an environment]({{< ref rad_environment_delete.md >}}) to delete all Radius resources running on the EKS Cluster.
{{% /alert %}}
{{% alert title="Cleanup AWS Resources" color="warning" %}}
Expand Down

0 comments on commit 10bbee4

Please sign in to comment.