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
6 changes: 3 additions & 3 deletions docs/content/reference/cli/rad_application_graph.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ the command compiles the template and writes the resulting modeled graph to
./app-graph.json without contacting the control plane.

If the command runs inside a GitHub Actions runner (GITHUB_ACTIONS=true), the
modeled graph is committed to <source-branch>/app-graph.json on the radius-graph
orphan branch instead of the local filesystem. This is auto-detected; no flag
modeled graph is saved to <source-branch>/app-graph.json in the radius-graph
archive instead of the local filesystem. This is auto-detected; no flag
is required.

```
Expand All @@ -46,7 +46,7 @@ rad app graph ./app.bicep
-a, --application string The application name
-g, --group string The resource group name
-h, --help help for graph
--include-icons When set with --preview, embeds each referenced resource type icon's SVG bytes in the response.
--include-icons When set with --preview (deployed) or with a bicep-file argument (modeled), embeds each referenced resource type icon's SVG bytes in the response's icons map.
-o, --output string output format (supported formats are json, table) (default "table")
--preview Use the Radius.Core preview implementation (can also be set via RADIUS_PREVIEW=true)
-w, --workspace string The workspace name
Expand Down
2 changes: 1 addition & 1 deletion docs/content/reference/cli/rad_environment_update.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ rad env update myenv --recipe-packs pack1,pack2
-g, --group string The resource group name
-h, --help help for update
--kubernetes-namespace string The namespace where Kubernetes resources will be deployed
--preview Use the Radius.Core preview implementation for environment update.
--preview Use the Radius.Core preview implementation for environment update (can also be set via RADIUS_PREVIEW=true)
--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 Down
4 changes: 2 additions & 2 deletions docs/content/reference/cli/rad_shutdown.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ Back up Radius state and prepare for shutdown
Back up all durable Radius state for the current workspace.

Dumps the control-plane PostgreSQL databases and exports the Terraform recipe state Secrets,
commits them to the radius-state git orphan branch, and pushes to the remote when one is
configured. The state can be restored into a fresh control plane with 'rad startup'.
commits them to the radius-state archive. The state can be restored into a fresh control plane
with 'rad startup'.

This command does not delete the cluster or uninstall Radius.

Expand Down
2 changes: 1 addition & 1 deletion docs/content/reference/cli/rad_startup.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Restore Radius state after startup

Restore durable Radius state for the current workspace.

Opens the radius-state git orphan branch, waits for the control-plane PostgreSQL instance to be
Opens the radius-state archive, waits for the control-plane PostgreSQL instance to be
ready, restores the control-plane databases, and re-creates the Terraform recipe state Secrets.
Run this after Radius is installed on a fresh cluster to resume from the state saved by
'rad shutdown'.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ description: "Detailed reference documentation for radius.core/recipepacks@2025-
| Property | Type | Description |
|----------|------|-------------|
| **kind** | 'bicep' | 'terraform' | The type of recipe (e.g., Terraform, Bicep) <br />_(Required)_ |
| **outputs** | [Record](#record) | Map of resource type property names to module output names. Used for recipes that point directly at a Bicep or Terraform module to map the module's outputs onto the resource's properties. |
| **outputs** | [Record](#record) | Maps the module's outputs onto the resource type's properties, for recipes that point directly at a Bicep or Terraform module. Each entry's value is either a string (the module output name for a non-secret property) or, under the reserved `secrets` key, a nested object mapping secret property names to module output names. A `secrets` entry always routes its module output to the resource's secret outputs regardless of how the module classified it (for example an AVM module's `primaryConnectionString`). Example: `{ host: 'name', secrets: { connectionString: 'primaryConnectionString' } }`. |
| **parameters** | [Record](#record) | Parameters to pass to the recipe |
| **plainHttp** | bool | Connect to the source using HTTP (not HTTPS). This should be used when the source is known not to support HTTPS, for example in a locally hosted registry for Bicep recipes. Defaults to false (use HTTPS/TLS) |
| **source** | string | The source of the recipe. For Bicep recipes this is the OCI registry reference. For Terraform recipes this is the module source. <br />_(Required)_ |
Expand All @@ -67,7 +67,7 @@ description: "Detailed reference documentation for radius.core/recipepacks@2025-

#### Additional Properties

* **Additional Properties Type**: string
* **Additional Properties Type**: any

### Record

Expand Down
Loading