From 84796d2a431cd861c95b0564a0a14c6c707ef78a Mon Sep 17 00:00:00 2001 From: nithyatsu Date: Fri, 27 Oct 2023 10:04:00 -0700 Subject: [PATCH] update bicep values.yaml and README --- samples/aws-sqs/sqs.bicep | 4 ++-- samples/aws/awss3.bicep | 2 +- samples/dapr/dapr-azure.bicep | 4 ++-- samples/dapr/dapr.bicep | 4 ++-- samples/demo/Chart/values.yaml | 2 +- samples/demo/app.bicep | 2 +- samples/eshop-dapr/services/basket-api.bicep | 2 +- samples/eshop-dapr/services/blazor-client.bicep | 2 +- samples/eshop-dapr/services/catalog-api.bicep | 2 +- samples/eshop-dapr/services/identity-api.bicep | 2 +- samples/eshop-dapr/services/ordering-api.bicep | 2 +- samples/eshop-dapr/services/payment-api.bicep | 2 +- samples/eshop-dapr/services/webshopping-agg.bicep | 2 +- samples/eshop-dapr/services/webshopping-gw.bicep | 2 +- samples/eshop-dapr/services/webstatus.bicep | 2 +- samples/eshop/envoy/README.md | 4 ++-- samples/eshop/iac/services/basket.bicep | 2 +- samples/eshop/iac/services/catalog.bicep | 2 +- samples/eshop/iac/services/identity.bicep | 2 +- samples/eshop/iac/services/ordering.bicep | 6 +++--- samples/eshop/iac/services/payment.bicep | 2 +- samples/eshop/iac/services/web.bicep | 4 ++-- samples/eshop/iac/services/webhooks.bicep | 4 ++-- samples/eshop/iac/services/webshopping.bicep | 4 ++-- samples/eshop/iac/services/webstatus.bicep | 2 +- samples/volumes/app.bicep | 2 +- 26 files changed, 35 insertions(+), 35 deletions(-) diff --git a/samples/aws-sqs/sqs.bicep b/samples/aws-sqs/sqs.bicep index 2a0b9069..31d91d1c 100644 --- a/samples/aws-sqs/sqs.bicep +++ b/samples/aws-sqs/sqs.bicep @@ -44,7 +44,7 @@ resource producer 'Applications.Core/containers@2023-10-01-preview' = { }, aws_credential ) - image: 'k3d-mycluster-registry.localhost:5000/radius-project/samples/aws-sqs-sample:latest' + image: 'k3d-myregistry.localhost:5050/radius-project/samples/aws-sqs-sample:latest' } } } @@ -61,7 +61,7 @@ resource consumer 'Applications.Core/containers@2023-10-01-preview' = { }, aws_credential ) - image: 'k3d-mycluster-registry.localhost:5000/radius-project/samples/aws-sqs-sample:latest' + image: 'k3d-myregistry.localhost:5050/radius-project/samples/aws-sqs-sample:latest' } } } diff --git a/samples/aws/awss3.bicep b/samples/aws/awss3.bicep index c5abd4c4..f80f955c 100644 --- a/samples/aws/awss3.bicep +++ b/samples/aws/awss3.bicep @@ -39,7 +39,7 @@ resource frontend 'Applications.Core/containers@2023-10-01-preview' = { AWS_SECRET_ACCESS_KEY: aws_secret_access_key AWS_DEFAULT_REGION: aws_region } - image: 'k3d-mycluster-registry.localhost:5000/radius-project/samples/aws:latest' + image: 'k3d-myregistry.localhost:5050/radius-project/samples/aws:latest' } } } diff --git a/samples/dapr/dapr-azure.bicep b/samples/dapr/dapr-azure.bicep index 62227c67..fd8a81c7 100644 --- a/samples/dapr/dapr-azure.bicep +++ b/samples/dapr/dapr-azure.bicep @@ -15,7 +15,7 @@ resource backend 'Applications.Core/containers@2023-10-01-preview' = { properties: { application: app.id container: { - image: 'k3d-mycluster-registry.localhost:5000/radius-project/samples/dapr-backend:latest' + image: 'k3d-myregistry.localhost:5050/radius-project/samples/dapr-backend:latest' ports: { web: { containerPort: 3000 @@ -42,7 +42,7 @@ resource frontend 'Applications.Core/containers@2023-10-01-preview' = { properties: { application: app.id container: { - image: 'k3d-mycluster-registry.localhost:5000/radius-project/samples/dapr-frontend:latest' + image: 'k3d-myregistry.localhost:5050/radius-project/samples/dapr-frontend:latest' env: { CONNECTION_BACKEND_APPID: backend.name } diff --git a/samples/dapr/dapr.bicep b/samples/dapr/dapr.bicep index 8e5ce157..a158c572 100644 --- a/samples/dapr/dapr.bicep +++ b/samples/dapr/dapr.bicep @@ -18,7 +18,7 @@ resource backend 'Applications.Core/containers@2023-10-01-preview' = { properties: { application: app.id container: { - image: 'k3d-mycluster-registry.localhost:5000/radius-project/samples/dapr-backend:latest' + image: 'k3d-myregistry.localhost:5050/radius-project/samples/dapr-backend:latest' ports: { web: { containerPort: 3000 @@ -45,7 +45,7 @@ resource frontend 'Applications.Core/containers@2023-10-01-preview' = { properties: { application: app.id container: { - image: 'k3d-mycluster-registry.localhost:5000/radius-project/samples/dapr-frontend:latest' + image: 'k3d-myregistry.localhost:5050/radius-project/samples/dapr-frontend:latest' env: { CONNECTION_BACKEND_APPID: backend.name } diff --git a/samples/demo/Chart/values.yaml b/samples/demo/Chart/values.yaml index 8a782a31..1ccd8f73 100644 --- a/samples/demo/Chart/values.yaml +++ b/samples/demo/Chart/values.yaml @@ -1,3 +1,3 @@ image: - repository: k3d-mycluster-registry.localhost:5000/radius-project/samples/demo + repository: k3d-myregistry.localhost:5050/radius-project/samples/demo tag: latest \ No newline at end of file diff --git a/samples/demo/app.bicep b/samples/demo/app.bicep index 4ee48ccb..d27acb8f 100644 --- a/samples/demo/app.bicep +++ b/samples/demo/app.bicep @@ -8,7 +8,7 @@ resource demo 'Applications.Core/containers@2023-10-01-preview' = { properties: { application: application container: { - image: 'k3d-mycluster-registry.localhost:5000/radius-project/samples/demo:latest' + image: 'k3d-myregistry.localhost:5050/radius-project/samples/demo:latest' ports: { web: { containerPort: 3000 diff --git a/samples/eshop-dapr/services/basket-api.bicep b/samples/eshop-dapr/services/basket-api.bicep index b2cbef15..119b25df 100644 --- a/samples/eshop-dapr/services/basket-api.bicep +++ b/samples/eshop-dapr/services/basket-api.bicep @@ -61,7 +61,7 @@ resource basketApi 'Applications.Core/containers@2023-10-01-preview' = { properties: { application: appId container: { - image: 'k3d-mycluster-registry.localhost:5000/radius-project/samples/eshopdapr/basket.api:rad-latest' + image: 'k3d-myregistry.localhost:5050/radius-project/samples/eshopdapr/basket.api:rad-latest' env: { ASPNETCORE_ENVIRONMENT: 'Development' ASPNETCORE_URLS: 'http://0.0.0.0:80' diff --git a/samples/eshop-dapr/services/blazor-client.bicep b/samples/eshop-dapr/services/blazor-client.bicep index c3fa32b6..6ea5379b 100644 --- a/samples/eshop-dapr/services/blazor-client.bicep +++ b/samples/eshop-dapr/services/blazor-client.bicep @@ -37,7 +37,7 @@ resource blazorClient 'Applications.Core/containers@2023-10-01-preview' = { properties: { application: appId container: { - image: 'k3d-mycluster-registry.localhost:5000/radius-project/samples/eshopdapr/blazor.client:rad-latest' + image: 'k3d-myregistry.localhost:5050/radius-project/samples/eshopdapr/blazor.client:rad-latest' env: { ASPNETCORE_ENVIRONMENT: 'Development' ASPNETCORE_URLS: 'http://0.0.0.0:80' diff --git a/samples/eshop-dapr/services/catalog-api.bicep b/samples/eshop-dapr/services/catalog-api.bicep index 0bb7f304..7c399def 100644 --- a/samples/eshop-dapr/services/catalog-api.bicep +++ b/samples/eshop-dapr/services/catalog-api.bicep @@ -62,7 +62,7 @@ resource catalogApi 'Applications.Core/containers@2023-10-01-preview' = { properties: { application: appId container: { - image: 'k3d-mycluster-registry.localhost:5000/radius-project/samples/eshopdapr/catalog.api:rad-latest' + image: 'k3d-myregistry.localhost:5050/radius-project/samples/eshopdapr/catalog.api:rad-latest' env: { ASPNETCORE_ENVIRONMENT: 'Development' ASPNETCORE_URLS: 'http://0.0.0.0:80' diff --git a/samples/eshop-dapr/services/identity-api.bicep b/samples/eshop-dapr/services/identity-api.bicep index 51ec9241..4cc9ba5a 100644 --- a/samples/eshop-dapr/services/identity-api.bicep +++ b/samples/eshop-dapr/services/identity-api.bicep @@ -61,7 +61,7 @@ resource identityApi 'Applications.Core/containers@2023-10-01-preview' = { properties: { application: appId container: { - image: 'k3d-mycluster-registry.localhost:5000/radius-project/samples/eshopdapr/identity.api:rad-latest' + image: 'k3d-myregistry.localhost:5050/radius-project/samples/eshopdapr/identity.api:rad-latest' env: { ASPNETCORE_ENVIRONMENT: 'Development' ASPNETCORE_URLS: 'http://0.0.0.0:80' diff --git a/samples/eshop-dapr/services/ordering-api.bicep b/samples/eshop-dapr/services/ordering-api.bicep index 41c90ab1..ee68dcdc 100644 --- a/samples/eshop-dapr/services/ordering-api.bicep +++ b/samples/eshop-dapr/services/ordering-api.bicep @@ -76,7 +76,7 @@ resource orderingApi 'Applications.Core/containers@2023-10-01-preview' = { properties: { application: appId container: { - image: 'k3d-mycluster-registry.localhost:5000/radius-project/samples/eshopdapr/ordering.api:rad-latest' + image: 'k3d-myregistry.localhost:5050/radius-project/samples/eshopdapr/ordering.api:rad-latest' env: { ASPNETCORE_ENVIRONMENT: 'Development' ASPNETCORE_URLS: 'http://0.0.0.0:80' diff --git a/samples/eshop-dapr/services/payment-api.bicep b/samples/eshop-dapr/services/payment-api.bicep index bd5d8ca0..52f102b7 100644 --- a/samples/eshop-dapr/services/payment-api.bicep +++ b/samples/eshop-dapr/services/payment-api.bicep @@ -40,7 +40,7 @@ resource paymentApi 'Applications.Core/containers@2023-10-01-preview' = { properties: { application: appId container: { - image: 'k3d-mycluster-registry.localhost:5000/radius-project/samples/eshopdapr/payment.api:rad-latest' + image: 'k3d-myregistry.localhost:5050/radius-project/samples/eshopdapr/payment.api:rad-latest' env: { ASPNETCORE_ENVIRONMENT: 'Development' ASPNETCORE_URLS: 'http://0.0.0.0:80' diff --git a/samples/eshop-dapr/services/webshopping-agg.bicep b/samples/eshop-dapr/services/webshopping-agg.bicep index e6bb017a..3d8ec544 100644 --- a/samples/eshop-dapr/services/webshopping-agg.bicep +++ b/samples/eshop-dapr/services/webshopping-agg.bicep @@ -46,7 +46,7 @@ resource webshoppingAgg 'Applications.Core/containers@2023-10-01-preview' = { properties: { application: appId container: { - image: 'k3d-mycluster-registry.localhost:5000/radius-project/samples/eshopdapr/webshoppingagg:rad-latest' + image: 'k3d-myregistry.localhost:5050/radius-project/samples/eshopdapr/webshoppingagg:rad-latest' env: { ASPNETCORE_ENVIRONMENT: 'Development' ASPNETCORE_URLS: 'http://0.0.0.0:80' diff --git a/samples/eshop-dapr/services/webshopping-gw.bicep b/samples/eshop-dapr/services/webshopping-gw.bicep index 76a185a8..0d782e47 100644 --- a/samples/eshop-dapr/services/webshopping-gw.bicep +++ b/samples/eshop-dapr/services/webshopping-gw.bicep @@ -25,7 +25,7 @@ resource webshoppingGw 'Applications.Core/containers@2023-10-01-preview' = { properties: { application: appId container: { - image: 'k3d-mycluster-registry.localhost:5000/radius-project/samples/eshopdapr/webshoppingapigw:rad-latest' + image: 'k3d-myregistry.localhost:5050/radius-project/samples/eshopdapr/webshoppingapigw:rad-latest' env: { ENVOY_CATALOG_API_ADDRESS: catalogApiRoute.properties.hostname ENVOY_CATALOG_API_PORT: '${catalogApiRoute.properties.port}' diff --git a/samples/eshop-dapr/services/webstatus.bicep b/samples/eshop-dapr/services/webstatus.bicep index 0a0e50d3..3b84d6ae 100644 --- a/samples/eshop-dapr/services/webstatus.bicep +++ b/samples/eshop-dapr/services/webstatus.bicep @@ -33,7 +33,7 @@ resource webstatus 'Applications.Core/containers@2023-10-01-preview' = { properties: { application: appId container: { - image: 'k3d-mycluster-registry.localhost:5000/radius-project/samples/eshopdapr/webstatus:rad-latest' + image: 'k3d-myregistry.localhost:5050/radius-project/samples/eshopdapr/webstatus:rad-latest' env: { ASPNETCORE_ENVIRONMENT: 'Development' ASPNETCORE_URLS: 'http://0.0.0.0:80' diff --git a/samples/eshop/envoy/README.md b/samples/eshop/envoy/README.md index cf223e6b..2e52232e 100644 --- a/samples/eshop/envoy/README.md +++ b/samples/eshop/envoy/README.md @@ -6,9 +6,9 @@ What this means is that if we need to update the names of routes in eshop, *we l The routing configuration is in [envoy.yaml](envoy.yaml). See the `route_config` section specifically. -To build the docker image, run `docker build . -t k3d-mycluster-registry.localhost:5000/radius-project/samples/eshop-envoy:0.1.`. +To build the docker image, run `docker build . -t k3d-myregistry.localhost:5050/radius-project/samples/eshop-envoy:0.1.`. Where NUMBER is one greater than the latest version made. To view versions, see https://ms.portal.azure.com/#view/Microsoft_Azure_ContainerRegistries/RepositoryBlade/id/%2Fsubscriptions%2F66d1209e-1382-45d3-99bb-650e6bf63fc0%2FresourceGroups%2Fassets%2Fproviders%2FMicrosoft.ContainerRegistry%2Fregistries%2Fradius/repository/eshop-envoy. -To push the image, run `az acr login -n radius` and then `docker push k3d-mycluster-registry.localhost:5000/radius-project/samples/eshop-envoy:0.1.`. +To push the image, run `az acr login -n radius` and then `docker push k3d-myregistry.localhost:5050/radius-project/samples/eshop-envoy:0.1.`. diff --git a/samples/eshop/iac/services/basket.bicep b/samples/eshop/iac/services/basket.bicep index 247f8505..a1ec6ffd 100644 --- a/samples/eshop/iac/services/basket.bicep +++ b/samples/eshop/iac/services/basket.bicep @@ -54,7 +54,7 @@ resource basket 'Applications.Core/containers@2023-10-01-preview' = { properties: { application: application container: { - image: 'k3d-mycluster-registry.localhost:5000/radius-project/samples/eshop/basket.api:${TAG}' + image: 'k3d-myregistry.localhost:5050/radius-project/samples/eshop/basket.api:${TAG}' env: { ASPNETCORE_ENVIRONMENT: 'Development' ASPNETCORE_URLS: 'http://0.0.0.0:80' diff --git a/samples/eshop/iac/services/catalog.bicep b/samples/eshop/iac/services/catalog.bicep index b9179e39..9c37bf5a 100644 --- a/samples/eshop/iac/services/catalog.bicep +++ b/samples/eshop/iac/services/catalog.bicep @@ -61,7 +61,7 @@ resource catalog 'Applications.Core/containers@2023-10-01-preview' = { properties: { application: application container: { - image: 'k3d-mycluster-registry.localhost:5000/radius-project/samples/eshop/catalog.api:${TAG}' + image: 'k3d-myregistry.localhost:5050/radius-project/samples/eshop/catalog.api:${TAG}' env: { UseCustomizationData: 'False' PATH_BASE: '/catalog-api' diff --git a/samples/eshop/iac/services/identity.bicep b/samples/eshop/iac/services/identity.bicep index 2d527879..1eb9ed3e 100644 --- a/samples/eshop/iac/services/identity.bicep +++ b/samples/eshop/iac/services/identity.bicep @@ -56,7 +56,7 @@ resource identity 'Applications.Core/containers@2023-10-01-preview' = { properties: { application: application container: { - image: 'k3d-mycluster-registry.localhost:5000/radius-project/samples/eshop/identity.api:${TAG}' + image: 'k3d-myregistry.localhost:5050/radius-project/samples/eshop/identity.api:${TAG}' env: { PATH_BASE: '/identity-api' ASPNETCORE_ENVIRONMENT: 'Development' diff --git a/samples/eshop/iac/services/ordering.bicep b/samples/eshop/iac/services/ordering.bicep index 5a853dd2..2cdcd6b5 100644 --- a/samples/eshop/iac/services/ordering.bicep +++ b/samples/eshop/iac/services/ordering.bicep @@ -69,7 +69,7 @@ resource ordering 'Applications.Core/containers@2023-10-01-preview' = { properties: { application: application container: { - image: 'k3d-mycluster-registry.localhost:5000/radius-project/samples/eshop/ordering.api:${TAG}' + image: 'k3d-myregistry.localhost:5050/radius-project/samples/eshop/ordering.api:${TAG}' env: { ASPNETCORE_ENVIRONMENT: 'Development' ASPNETCORE_URLS: 'http://0.0.0.0:80' @@ -119,7 +119,7 @@ resource orderbgtasks 'Applications.Core/containers@2023-10-01-preview' = { properties: { application: application container: { - image: 'k3d-mycluster-registry.localhost:5000/radius-project/samples/eshop/ordering.backgroundtasks:${TAG}' + image: 'k3d-myregistry.localhost:5050/radius-project/samples/eshop/ordering.backgroundtasks:${TAG}' env: { ASPNETCORE_ENVIRONMENT: 'Development' ASPNETCORE_URLS: 'http://0.0.0.0:80' @@ -156,7 +156,7 @@ resource orderingsignalrhub 'Applications.Core/containers@2023-10-01-preview' = properties: { application: application container: { - image: 'k3d-mycluster-registry.localhost:5000/radius-project/samples/eshop/ordering.signalrhub:${TAG}' + image: 'k3d-myregistry.localhost:5050/radius-project/samples/eshop/ordering.signalrhub:${TAG}' env: { PATH_BASE: '/payment-api' ASPNETCORE_ENVIRONMENT: 'Development' diff --git a/samples/eshop/iac/services/payment.bicep b/samples/eshop/iac/services/payment.bicep index 74b83b6a..1e5fd9b2 100644 --- a/samples/eshop/iac/services/payment.bicep +++ b/samples/eshop/iac/services/payment.bicep @@ -42,7 +42,7 @@ resource payment 'Applications.Core/containers@2023-10-01-preview' = { properties: { application: application container: { - image: 'k3d-mycluster-registry.localhost:5000/radius-project/samples/eshop/payment.api:${TAG}' + image: 'k3d-myregistry.localhost:5050/radius-project/samples/eshop/payment.api:${TAG}' env: { ApplicationInsights__InstrumentationKey: APPLICATION_INSIGHTS_KEY 'Serilog__MinimumLevel__Override__payment-api.IntegrationEvents.EventHandling': 'Verbose' diff --git a/samples/eshop/iac/services/web.bicep b/samples/eshop/iac/services/web.bicep index 762b0d9d..47205dd8 100644 --- a/samples/eshop/iac/services/web.bicep +++ b/samples/eshop/iac/services/web.bicep @@ -49,7 +49,7 @@ resource webspa 'Applications.Core/containers@2023-10-01-preview' = { properties: { application: application container: { - image: 'k3d-mycluster-registry.localhost:5000/radius-project/samples/eshop/webspa:${TAG}' + image: 'k3d-myregistry.localhost:5050/radius-project/samples/eshop/webspa:${TAG}' env: { PATH_BASE: '/' ASPNETCORE_ENVIRONMENT: 'Production' @@ -103,7 +103,7 @@ resource webmvc 'Applications.Core/containers@2023-10-01-preview' = { properties: { application: application container: { - image: 'k3d-mycluster-registry.localhost:5000/radius-project/samples/eshop/webmvc:${TAG}' + image: 'k3d-myregistry.localhost:5050/radius-project/samples/eshop/webmvc:${TAG}' env: { ASPNETCORE_ENVIRONMENT: 'Development' ASPNETCORE_URLS: 'http://0.0.0.0:80' diff --git a/samples/eshop/iac/services/webhooks.bicep b/samples/eshop/iac/services/webhooks.bicep index 7d40175d..794b9b8f 100644 --- a/samples/eshop/iac/services/webhooks.bicep +++ b/samples/eshop/iac/services/webhooks.bicep @@ -51,7 +51,7 @@ resource webhooks 'Applications.Core/containers@2023-10-01-preview' = { properties: { application: application container: { - image: 'k3d-mycluster-registry.localhost:5000/radius-project/samples/eshop/webhooks.api:${TAG}' + image: 'k3d-myregistry.localhost:5050/radius-project/samples/eshop/webhooks.api:${TAG}' env: { PATH_BASE: '/webhooks-api' ASPNETCORE_ENVIRONMENT: 'Development' @@ -90,7 +90,7 @@ resource webhooksclient 'Applications.Core/containers@2023-10-01-preview' = { properties: { application: application container: { - image: 'k3d-mycluster-registry.localhost:5000/radius-project/samples/eshop/webhooks.client:${TAG}' + image: 'k3d-myregistry.localhost:5050/radius-project/samples/eshop/webhooks.client:${TAG}' env: { ASPNETCORE_ENVIRONMENT: 'Production' ASPNETCORE_URLS: 'http://0.0.0.0:80' diff --git a/samples/eshop/iac/services/webshopping.bicep b/samples/eshop/iac/services/webshopping.bicep index 240e61ed..9083dc8b 100644 --- a/samples/eshop/iac/services/webshopping.bicep +++ b/samples/eshop/iac/services/webshopping.bicep @@ -59,7 +59,7 @@ resource webshoppingagg 'Applications.Core/containers@2023-10-01-preview' = { properties: { application: application container: { - image: 'k3d-mycluster-registry.localhost:5000/radius-project/samples/eshop/webshoppingagg:${TAG}' + image: 'k3d-myregistry.localhost:5050/radius-project/samples/eshop/webshoppingagg:${TAG}' env: { ASPNETCORE_ENVIRONMENT: 'Development' PATH_BASE: '/webshoppingagg' @@ -119,7 +119,7 @@ resource webshoppingapigw 'Applications.Core/containers@2023-10-01-preview' = { properties: { application: application container: { - image: 'k3d-mycluster-registry.localhost:5000/radius-project/samples/eshop/envoy:latest' + image: 'k3d-myregistry.localhost:5050/radius-project/samples/eshop/envoy:latest' ports: { http: { containerPort: 80 diff --git a/samples/eshop/iac/services/webstatus.bicep b/samples/eshop/iac/services/webstatus.bicep index f38a6f1c..7a036a07 100644 --- a/samples/eshop/iac/services/webstatus.bicep +++ b/samples/eshop/iac/services/webstatus.bicep @@ -58,7 +58,7 @@ resource webstatus 'Applications.Core/containers@2023-10-01-preview' = { properties: { application: application container: { - image: 'k3d-mycluster-registry.localhost:5000/radius-project/samples/eshop/webstatus:${TAG}' + image: 'k3d-myregistry.localhost:5050/radius-project/samples/eshop/webstatus:${TAG}' env: { ASPNETCORE_ENVIRONMENT: 'Development' ASPNETCORE_URLS: 'http://0.0.0.0:80' diff --git a/samples/volumes/app.bicep b/samples/volumes/app.bicep index 3f581b10..7317c36f 100644 --- a/samples/volumes/app.bicep +++ b/samples/volumes/app.bicep @@ -14,7 +14,7 @@ resource container 'Applications.Core/containers@2023-10-01-preview' = { properties: { application: app.id container: { - image: 'k3d-mycluster-registry.localhost:5000/radius-project/samples/volumes:latest' + image: 'k3d-myregistry.localhost:5050/radius-project/samples/volumes:latest' volumes: { temp: { kind: 'ephemeral'