Skip to content
Open
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
1 change: 1 addition & 0 deletions docs/content/reference/cli/rad_application_graph.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ rad app graph my-application
-g, --group string The resource group name
-h, --help help for graph
-o, --output string output format (supported formats are json, table) (default "table")
--preview Use the Radius.Core preview implementation
-w, --workspace string The workspace name
```

Expand Down
1 change: 1 addition & 0 deletions docs/content/reference/cli/rad_application_status.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ rad app status my-app --group my-group
-g, --group string The resource group name
-h, --help help for status
-o, --output string output format (supported formats are json, table) (default "table")
--preview Use the Radius.Core preview implementation
-w, --workspace string The workspace name
```

Expand Down
28 changes: 22 additions & 6 deletions docs/content/reference/cli/rad_environment_create.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,18 +23,34 @@ rad environment create [envName] [flags]
### Examples

```

## Create environment with default namespace
rad env create myenv

## Create environment with a specific namespace
rad env create myenv --kubernetes-namespace mynamespace

## Create environment with Azure cloud provider
rad env create myenv --azure-subscription-id <subscription-id> --azure-resource-group <resource-group>

## Create environment with AWS cloud provider
rad env create myenv --aws-region <region> --aws-account-id <account-id>

```

### Options

```
-e, --environment string The environment name
-g, --group string The resource group name
-h, --help help for create
-n, --namespace string The Kubernetes namespace
--preview Use the Radius.Core preview implementation
-w, --workspace string The workspace name
--aws-account-id string The account ID where AWS resources will be deployed
--aws-region string The region where AWS resources will be deployed
--azure-resource-group string The resource group where Azure resources will be deployed
--azure-subscription-id string The subscription ID where Azure resources will be deployed
-e, --environment string The environment name
-g, --group string The resource group name
-h, --help help for create
--kubernetes-namespace string The namespace where Kubernetes resources will be deployed
--preview Use the Radius.Core preview implementation
-w, --workspace string The workspace name
```

### Options inherited from parent commands
Expand Down
4 changes: 2 additions & 2 deletions docs/content/reference/cli/rad_environment_update.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,8 +66,7 @@ rad env update myenv --recipe-packs pack1,pack2
-e, --environment string The environment name
-g, --group string The resource group name
-h, --help help for update
--kubernetes-namespace string The namespace where Kubernetes resources will be deployed (preview)
-o, --output string output format (supported formats are json, table) (default "table")
--kubernetes-namespace string The namespace where Kubernetes resources will be deployed
--preview Use the Radius.Core preview implementation for environment update.
--recipe-packs strings Specify recipe packs to replace the environment's recipe pack list (--preview). Accepts comma-separated values.
-w, --workspace string The workspace name
Expand All @@ -77,6 +76,7 @@ rad env update myenv --recipe-packs pack1,pack2

```
--config string config file (default "$HOME/.rad/config.yaml")
-o, --output string output format (supported formats are json, table) (default "table")
```

### SEE ALSO
Expand Down
7 changes: 6 additions & 1 deletion docs/content/reference/cli/rad_install_kubernetes.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,12 @@ Installs Radius onto a kubernetes cluster
Install Radius in a Kubernetes cluster using the Radius Helm chart.
By default 'rad install kubernetes' will install Radius with the version matching the rad CLI version.

Radius will be installed in the 'radius-system' namespace. For more information visit https://docs.radapp.io/concepts/technical/architecture/
Radius will be installed in the 'radius-system' namespace. For more information visit https://docs.radapp.io/concepts#technical-architecture

This command also ensures that a default resource group named 'default' and a default environment
named 'default' (using the 'default' Kubernetes namespace) exist so the cluster is immediately
ready to deploy applications. If either resource already exists, it is left unchanged; user
customizations are never overwritten, even with '--reinstall'.

Overrides can be set by specifying Helm chart values with the '--set' flag. For more information visit https://docs.radapp.io/guides/operations/kubernetes/install/.

Expand Down
1 change: 1 addition & 0 deletions docs/content/reference/cli/rad_workspace_create.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ rad workspace create kubernetes
-f, --force Overwrite existing workspace if present
-g, --group string The resource group name
-h, --help help for create
--preview Use the Radius.Core preview implementation
-w, --workspace string The workspace name
```

Expand Down
Loading