Skip to content
Draft
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
12 changes: 12 additions & 0 deletions AI/models/test/app.bicep
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,18 @@ resource model 'Radius.AI/models@2025-08-01-preview' = {
}
}

resource demoImage 'Radius.Compute/containerImages@2025-08-01-preview' = {
name: 'models-demo-image'
properties: {
environment: environment
application: app.id
tag: 'demo-e2e'
build: {
source: 'git::https://github.com/radius-project/samples.git//samples/demo?ref=190d9c4c84278980d9fae402330bd5ead76b31a5'
}
}
}

resource democontainer 'Radius.Compute/containers@2025-08-01-preview' = {
name: 'democontainer'
properties: {
Expand Down
12 changes: 12 additions & 0 deletions AI/search/test/app.bicep
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,18 @@ resource searchService 'Radius.AI/search@2025-08-01-preview' = {
}
}

resource demoImage 'Radius.Compute/containerImages@2025-08-01-preview' = {
name: 'search-demo-image'
properties: {
environment: environment
application: app.id
tag: 'demo-e2e'
build: {
source: 'git::https://github.com/radius-project/samples.git//samples/demo?ref=190d9c4c84278980d9fae402330bd5ead76b31a5'
}
}
}

resource democontainer 'Radius.Compute/containers@2025-08-01-preview' = {
name: 'democontainer'
properties: {
Expand Down
12 changes: 12 additions & 0 deletions Data/mongoDatabases/test/app.bicep
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,18 @@ resource mongo 'Radius.Data/mongoDatabases@2025-08-01-preview' = {
}
}

resource demoImage 'Radius.Compute/containerImages@2025-08-01-preview' = {
name: 'mongodb-demo-image'
properties: {
environment: environment
application: app.id
tag: 'demo-e2e'
build: {
source: 'git::https://github.com/radius-project/samples.git//samples/demo?ref=190d9c4c84278980d9fae402330bd5ead76b31a5'
}
}
}

resource democontainer 'Radius.Compute/containers@2025-08-01-preview' = {
name: 'democontainer'
properties: {
Expand Down
12 changes: 12 additions & 0 deletions Data/mySqlDatabases/test/app.bicep
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,18 @@ resource mysql 'Radius.Data/mySqlDatabases@2025-08-01-preview' = {
}
}

resource demoImage 'Radius.Compute/containerImages@2025-08-01-preview' = {
name: 'mysql-demo-image'
properties: {
environment: environment
application: app.id
tag: 'demo-e2e'
build: {
source: 'git::https://github.com/radius-project/samples.git//samples/demo?ref=190d9c4c84278980d9fae402330bd5ead76b31a5'
}
}
}

resource democontainer 'Radius.Compute/containers@2025-08-01-preview' = {
name: 'democontainer'
properties: {
Expand Down
12 changes: 12 additions & 0 deletions Data/neo4jDatabases/test/app.bicep
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,18 @@ resource myapp 'Radius.Core/applications@2025-08-01-preview' = {
}
}

resource demoImage 'Radius.Compute/containerImages@2025-08-01-preview' = {
name: 'neo4j-demo-image'
properties: {
environment: environment
application: myapp.id
tag: 'demo-e2e'
build: {
source: 'git::https://github.com/radius-project/samples.git//samples/demo?ref=190d9c4c84278980d9fae402330bd5ead76b31a5'
}
}
}

resource mycontainer 'Radius.Compute/containers@2025-08-01-preview' = {
name: 'mycontainer'
properties: {
Expand Down
12 changes: 12 additions & 0 deletions Data/postgreSqlDatabases/test/app.bicep
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,18 @@ resource postgresql 'Radius.Data/postgreSqlDatabases@2025-08-01-preview' = {
}
}

resource demoImage 'Radius.Compute/containerImages@2025-08-01-preview' = {
name: 'postgresql-demo-image'
properties: {
environment: environment
application: app.id
tag: 'demo-e2e'
build: {
source: 'git::https://github.com/radius-project/samples.git//samples/demo?ref=190d9c4c84278980d9fae402330bd5ead76b31a5'
}
}
}

resource democontainer 'Radius.Compute/containers@2025-08-01-preview' = {
name: 'democontainer'
properties: {
Expand Down
12 changes: 12 additions & 0 deletions Data/redisCaches/test/app.bicep
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,18 @@ resource redis 'Radius.Data/redisCaches@2025-08-01-preview' = {
}
}

resource demoImage 'Radius.Compute/containerImages@2025-08-01-preview' = {
name: 'redis-demo-image'
properties: {
environment: environment
application: app.id
tag: 'demo-e2e'
build: {
source: 'git::https://github.com/radius-project/samples.git//samples/demo?ref=190d9c4c84278980d9fae402330bd5ead76b31a5'
}
}
}

resource democontainer 'Radius.Compute/containers@2025-08-01-preview' = {
name: 'democontainer'
properties: {
Expand Down
12 changes: 12 additions & 0 deletions Data/sqlServerDatabases/test/app.bicep
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,18 @@ resource sqlserver 'Radius.Data/sqlServerDatabases@2025-08-01-preview' = {
}
}

resource demoImage 'Radius.Compute/containerImages@2025-08-01-preview' = {
name: 'sqlserver-demo-image'
properties: {
environment: environment
application: app.id
tag: 'demo-e2e'
build: {
source: 'git::https://github.com/radius-project/samples.git//samples/demo?ref=190d9c4c84278980d9fae402330bd5ead76b31a5'
}
}
}

resource democontainer 'Radius.Compute/containers@2025-08-01-preview' = {
name: 'democontainer'
properties: {
Expand Down
12 changes: 12 additions & 0 deletions Messaging/kafka/test/app.bicep
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,18 @@ resource kafkaBroker 'Radius.Messaging/kafka@2025-08-01-preview' = {
}
}

resource demoImage 'Radius.Compute/containerImages@2025-08-01-preview' = {
name: 'kafka-demo-image'
properties: {
environment: environment
application: app.id
tag: 'demo-e2e'
build: {
source: 'git::https://github.com/radius-project/samples.git//samples/demo?ref=190d9c4c84278980d9fae402330bd5ead76b31a5'
}
}
}

resource democontainer 'Radius.Compute/containers@2025-08-01-preview' = {
name: 'democontainer'
properties: {
Expand Down
12 changes: 12 additions & 0 deletions Messaging/rabbitMQ/test/app.bicep
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,18 @@ resource queue 'Radius.Messaging/rabbitMQ@2025-08-01-preview' = {
}
}

resource demoImage 'Radius.Compute/containerImages@2025-08-01-preview' = {
name: 'rabbitmq-demo-image'
properties: {
environment: environment
application: app.id
tag: 'demo-e2e'
build: {
source: 'git::https://github.com/radius-project/samples.git//samples/demo?ref=190d9c4c84278980d9fae402330bd5ead76b31a5'
}
}
}

resource democontainer 'Radius.Compute/containers@2025-08-01-preview' = {
name: 'democontainer'
properties: {
Expand Down
12 changes: 12 additions & 0 deletions Storage/objectStorage/test/app.bicep
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,18 @@ resource store 'Radius.Storage/objectStorage@2025-08-01-preview' = {
}
}

resource demoImage 'Radius.Compute/containerImages@2025-08-01-preview' = {
name: 'objectstorage-demo-image'
properties: {
environment: environment
application: app.id
tag: 'demo-e2e'
build: {
source: 'git::https://github.com/radius-project/samples.git//samples/demo?ref=190d9c4c84278980d9fae402330bd5ead76b31a5'
}
}
}

resource democtr 'Radius.Compute/containers@2025-08-01-preview' = {
name: 'democtr'
properties: {
Expand Down
Loading