-
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.
move installation content into shared folder
- Loading branch information
Showing
12 changed files
with
213 additions
and
204 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
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
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,3 @@ | ||
{{ $file := .Get "file" }} | ||
{{ $fileContents := $file | readFile }} | ||
{{ (print "\n" $fileContents "\n") | markdownify }} |
42 changes: 42 additions & 0 deletions
42
docs/shared-content/installation/install-radius/initialize-radius.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,42 @@ | ||
The Radius control-plane is a set of services that provide the core functionality of Radius. It is deployed as a set of containers in a Kubernetes cluster. | ||
|
||
1. Initialize a new [Radius environment]({{< ref "/guides/deploy-apps/environments/overview">}}) with [`rad init`]({{< ref rad_init >}}): | ||
```bash | ||
rad init | ||
``` | ||
|
||
Select `Yes` to setup the app.bicep in the current directory | ||
|
||
``` | ||
Initializing Radius... | ||
🕔 Install Radius {{< param version >}} | ||
- Kubernetes cluster: kind | ||
- Kubernetes namespace: radius-system | ||
⏳ Create new environment default | ||
- Kubernetes namespace: default | ||
- Recipe pack: local-dev | ||
⏳ Scaffold application | ||
⏳ Update local configuration | ||
``` | ||
|
||
2. Verify the initialization by running: | ||
```bash | ||
kubectl get deployments -n radius-system | ||
``` | ||
|
||
You should see: | ||
|
||
``` | ||
NAME READY UP-TO-DATE AVAILABLE AGE | ||
ucp 1/1 1 1 53s | ||
appcore-rp 1/1 1 1 53s | ||
bicep-de 1/1 1 1 53s | ||
contour-contour 1/1 1 1 46s | ||
``` | ||
|
||
You can also use [`rad env list`]({{< ref rad_env_list.md >}}) to view your environment: | ||
|
||
```bash | ||
rad env list | ||
``` |
Oops, something went wrong.