Skip to content

RRT supports recipe by default #1492

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 4 commits into from
Jul 18, 2025
Merged
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
2 changes: 1 addition & 1 deletion docs/content/tutorials/create-composite-recipe/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ rad resource-type create webServices -f types.yaml
```
$ rad resource-type create webServices -f types.yaml
Resource provider "Radius.Resources" found. Registering resource type "webServices".
Creating resource type Radius.Resources/webServices with capabilities SupportsRecipes
Creating resource type Radius.Resources/webServices
Creating API Version Radius.Resources/webServices@2023-10-01-preview
Updating location Radius.Resources/global with new resource type
Resource type Radius.Resources/webServices created successfully
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
name: Radius.Resources
types:
postgreSQL:
capabilities: ["SupportsRecipes"]
apiVersions:
'2023-10-01-preview':
schema:
Expand Down Expand Up @@ -35,7 +34,6 @@ types:
description: The password for the database
readOnly: true
webServices:
capabilities: ["SupportsRecipes"]
apiVersions:
'2023-10-01-preview':
schema:
Expand Down
3 changes: 1 addition & 2 deletions docs/content/tutorials/create-resource-type/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,6 @@ To create a PostgreSQL resource type in Radius, first create the resource type d

- **`name`**: The namespace of the resource type, as a convention `Radius.Resources` is recommended but any name in the form `PrimaryName.SecondaryName` can be used
- **`types`**: The resource type name
- **`capabilities`**: This specifies features of the resource type. The only available option is `SupportsRecipes` which indicates that the resource type can be deployed via a Recipe.
- **`apiVersions`**: The version of the schema defined below
- **`schema`**: The OpenAPI v3 schema which defines the properties of the resource type
- **`environment`**: The Radius environment ID which the resource is deployed to, this property is set by the Radius CLI when the resource is deployed
Expand All @@ -52,7 +51,7 @@ To create a PostgreSQL resource type in Radius, first create the resource type d

The `host`, `port`, `username`, and `password` properties are read-only properties set by Recipe.

1. Create the resource type using the [rad resource-type]({{< ref rad_resource-type_create >}}) command:
2. Create the resource type using the [rad resource-type]({{< ref rad_resource-type_create >}}) command:

```bash
rad resource-type create postgreSQL -f types.yaml
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
name: Radius.Resources
types:
postgreSQL:
capabilities: ["SupportsRecipes"]
apiVersions:
'2023-10-01-preview':
schema:
Expand Down
Loading