-
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 branch 'edge' into aacrawfi/kubernetes-overview
- Loading branch information
Showing
25 changed files
with
136 additions
and
33 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
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.
Binary file removed
BIN
-47.4 KB
docs/content/guides/author-apps/application/overview/graph-automation.png
Binary file not shown.
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
Binary file added
BIN
+174 KB
docs/content/guides/author-apps/application/overview/portable-resources.png
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: "Dapr building blocks" | ||
linkTitle: "Dapr" | ||
description: "Easily leverage Dapr building blocks in your application for code and infrastructure portability" | ||
weight: 500 | ||
--- |
File renamed without changes
File renamed without changes
9 changes: 4 additions & 5 deletions
9
.../content/guides/author-apps/dapr/index.md → ...guides/author-apps/dapr/overview/index.md
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
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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: "Resource groups" | ||
linkTitle: "Resource groups" | ||
description: "Manage collections of resources with resource groups" | ||
weight: 600 | ||
--- |
89 changes: 89 additions & 0 deletions
89
docs/content/guides/operations/groups/howto-resourcegroups/index.md
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,89 @@ | ||
--- | ||
type: docs | ||
title: "How-To: Manage resource groups" | ||
linkTitle: "Manage groups" | ||
description: "Learn how to manage resource groups in Radius" | ||
weight: 200 | ||
--- | ||
|
||
This guide will walk you through the process of managing resource groups in Radius. For more information on resource groups, see [Resource groups]({{< ref groups >}}). | ||
|
||
## Pre-requisites | ||
|
||
- [Supported Kubernetes cluster]({{< ref supported-clusters >}}) | ||
- [Radius CLI]({{< ref howto-rad-cli >}}) | ||
|
||
## Step 1: Ensure Radius is installed | ||
|
||
Begin by making sure that Radius is installed on your Kubernetes cluster: | ||
|
||
```bash | ||
rad install kubernetes | ||
``` | ||
|
||
## Step 2: Create a resource group | ||
|
||
Run [`rad group create`]({{< ref rad_group_create >}}) to create a resource group: | ||
|
||
```bash | ||
rad group create myGroup | ||
``` | ||
|
||
You should see: | ||
|
||
``` | ||
creating resource group "myGroup" in namespace "default"... | ||
resource group "myGroup" created | ||
``` | ||
|
||
## Step 3: View your resource group | ||
|
||
Run [`rad group show`]({{< ref rad_group_show >}}) to view the your resource group: | ||
|
||
```bash | ||
rad group show myGroup | ||
``` | ||
|
||
You should see: | ||
|
||
``` | ||
ID NAME | ||
/planes/radius/local/resourcegroups/myGroup myGroup | ||
``` | ||
|
||
You can use the `-o json` flag to view more information about the resource group: | ||
|
||
```bash | ||
rad group show -o json | ||
``` | ||
|
||
You should see: | ||
|
||
``` | ||
{ | ||
"id": "/planes/radius/local/resourcegroups/myGroup", | ||
"location": "global", | ||
"name": "myGroup", | ||
"tags": {}, | ||
"type": "System.Resources/resourceGroups", | ||
} | ||
``` | ||
|
||
## Step 4: Set your resource group as the default | ||
|
||
Setting a default resource group allows you to run commands like `rad deploy` without specifying the `-g/--group` flag explicitly every time. Run [`rad group switch`]({{< ref rad_group_switch >}}) to set your new resource group as the default: | ||
|
||
```bash | ||
rad group switch myGroup | ||
``` | ||
|
||
You can now run `rad deploy` or `rad recipe list` without needing to specify the group. | ||
|
||
## Step 5: Delete your resource group | ||
|
||
Run [`rad group delete`]({{< ref rad_group_delete >}}) to delete a resource group: | ||
|
||
```bash | ||
rad group delete myGroup | ||
``` |
File renamed without changes
File renamed without changes
6 changes: 3 additions & 3 deletions
6
.../operations/control-plane/groups/index.md → ...uides/operations/groups/overview/index.md
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
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
File renamed without changes