Skip to content

Commit 4ca8b75

Browse files
committed
make recipes a default capability of RRT
Signed-off-by: nithyatsu <[email protected]>
1 parent ea179aa commit 4ca8b75

File tree

4 files changed

+2
-5
lines changed

4 files changed

+2
-5
lines changed

docs/content/tutorials/create-composite-recipe/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ rad resource-type create webServices -f types.yaml
4848
```
4949
$ rad resource-type create webServices -f types.yaml
5050
Resource provider "Radius.Resources" found. Registering resource type "webServices".
51-
Creating resource type Radius.Resources/webServices with capabilities SupportsRecipes
51+
Creating resource type Radius.Resources/webServices
5252
Creating API Version Radius.Resources/webServices@2023-10-01-preview
5353
Updating location Radius.Resources/global with new resource type
5454
Resource type Radius.Resources/webServices created successfully

docs/content/tutorials/create-composite-recipe/snippets/types.yaml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
name: Radius.Resources
22
types:
33
postgreSQL:
4-
capabilities: ["SupportsRecipes"]
54
apiVersions:
65
'2023-10-01-preview':
76
schema:
@@ -35,7 +34,6 @@ types:
3534
description: The password for the database
3635
readOnly: true
3736
webServices:
38-
capabilities: ["SupportsRecipes"]
3937
apiVersions:
4038
'2023-10-01-preview':
4139
schema:

docs/content/tutorials/create-resource-type/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ To create a PostgreSQL resource type in Radius, first create the resource type d
3939

4040
- **`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
4141
- **`types`**: The resource type name
42-
- **`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.
42+
- **`capabilities`**: This specifies features of the resource type. The only available option is `ManualResourceProvisioning` which indicates that the resource type can be deployed without a Recipe.
4343
- **`apiVersions`**: The version of the schema defined below
4444
- **`schema`**: The OpenAPI v3 schema which defines the properties of the resource type
4545
- **`environment`**: The Radius environment ID which the resource is deployed to, this property is set by the Radius CLI when the resource is deployed

docs/content/tutorials/create-resource-type/snippets/types.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
name: Radius.Resources
22
types:
33
postgreSQL:
4-
capabilities: ["SupportsRecipes"]
54
apiVersions:
65
'2023-10-01-preview':
76
schema:

0 commit comments

Comments
 (0)