Skip to content

Change name to namespace #1456

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

Open
wants to merge 16 commits into
base: edge
Choose a base branch
from
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
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Radius.Resources
namespace: Radius.Resources
types:
postgreSQL:
capabilities: ["SupportsRecipes"]
Expand Down
2 changes: 1 addition & 1 deletion docs/content/tutorials/custom-resource-type/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ To create a PostgreSQL resource type in Radius, first create the resource type d

The PostgreSQL resource type definition includes:

- **`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
- **`namespace`**: 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
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Radius.Resources
namespace: Radius.Resources
types:
postgreSQL:
capabilities: ["SupportsRecipes"]
Expand Down
Loading