-
Notifications
You must be signed in to change notification settings - Fork 100
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[UDT] add resource provider manifest for built in rps. (#8103)
# Description This PR defines resource provider manifests for built-in resource providers/types. It does not cover schema of each type. ## Type of change - This pull request adds or changes features of Radius and has an approved issue (issue link required). Fixes: https://dev.azure.com/azure-octo/Incubations/_workitems/edit/13646/ ## Contributor checklist Please verify that the PR meets the following requirements, where applicable: - [ X ] An overview of proposed schema changes is included in a linked GitHub issue. - [ X ] A design document PR is created in the [design-notes repository](https://github.com/radius-project/design-notes/), if new APIs are being introduced. - [ X ] If applicable, design document has been reviewed and approved by Radius maintainers/approvers. - [ X ] A PR for the [samples repository](https://github.com/radius-project/samples) is created, if existing samples are affected by the changes in this PR. - [ X ] A PR for the [documentation repository](https://github.com/radius-project/docs) is created, if the changes in this PR affect the documentation or any user facing updates are made. - [ X ] A PR for the [recipes repository](https://github.com/radius-project/recipes) is created, if existing recipes are affected by the changes in this PR.
- Loading branch information
Showing
5 changed files
with
91 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
name: Applications.Core | ||
types: | ||
containers: | ||
apiVersions: | ||
"2025-01-01-preview": | ||
schema: {} | ||
capabilities: [] | ||
applications: | ||
apiVersions: | ||
"2025-01-01-preview": | ||
schema: {} | ||
capabilities: [] | ||
environments: | ||
apiVersions: | ||
"2025-01-01-preview": | ||
schema: {} | ||
capabilities: [] | ||
gateways: | ||
apiVersions: | ||
"2025-01-01-preview": | ||
schema: {} | ||
capabilities: [] | ||
secretStores: | ||
apiVersions: | ||
"2025-01-01-preview": | ||
schema: {} | ||
capabilities: [] | ||
extenders: | ||
apiVersions: | ||
"2025-01-01-preview": | ||
schema: {} | ||
capabilities: ["Recipes"] | ||
volumes: | ||
apiVersions: | ||
"2025-01-01-preview": | ||
schema: {} | ||
capabilities: [] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
name: Applications.Dapr | ||
types: | ||
configurationStores: | ||
apiVersions: | ||
"2025-01-01-preview": | ||
schema: {} | ||
capabilities: ["Recipes"] | ||
pubSubBrokers: | ||
apiVersions: | ||
"2025-01-01-preview": | ||
schema: {} | ||
capabilities: ["Recipes"] | ||
secretStores: | ||
apiVersions: | ||
"2025-01-01-preview": | ||
schema: {} | ||
capabilities: ["Recipes"] | ||
stateStores: | ||
apiVersions: | ||
"2025-01-01-preview": | ||
schema: {} | ||
capabilities: ["Recipes"] |
17 changes: 17 additions & 0 deletions
17
deploy/manifest/built-in-providers/applications_datastores.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
name: Applications.Datastores | ||
types: | ||
mongoDatabases: | ||
apiVersions: | ||
"2025-01-01-preview": | ||
schema: {} | ||
capabilities: ["Recipes"] | ||
sqlDatabases: | ||
apiVersions: | ||
"2025-01-01-preview": | ||
schema: {} | ||
capabilities: ["Recipes"] | ||
redisCaches: | ||
apiVersions: | ||
"2025-01-01-preview": | ||
schema: {} | ||
capabilities: ["Recipes"] |
7 changes: 7 additions & 0 deletions
7
deploy/manifest/built-in-providers/applications_messaging.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
name: Applications.Messaging | ||
types: | ||
rabbitMQQueues: | ||
apiVersions: | ||
"2025-01-01-preview": | ||
schema: {} | ||
capabilities: ["Recipes"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
name: Microsoft.Resources | ||
types: | ||
deployments: | ||
apiVersions: | ||
"2025-01-01-preview": | ||
schema: {} | ||
capabilities: [] | ||
|