diff --git a/docs/content/getting-started/index.md b/docs/content/getting-started/index.md index 7af15a7ea..e2425f0b7 100644 --- a/docs/content/getting-started/index.md +++ b/docs/content/getting-started/index.md @@ -73,7 +73,7 @@ In addition to starting Radius services in your Kubernetes cluster, this initial {{< rad file="snippets/app.bicep" embed=true markdownConfig="{linenos=table,linenostart=1}" >}} -> This file will run the `radius.azurecr.io/samples/demo` image. This image is published by the Radius team to a public registry, you do not need to create it. +> This file will run the `ghcr.io/radius-project/samples/demo:latest` image. This image is published by the Radius team to a public registry, you do not need to create it. ## 4. Run the app diff --git a/docs/content/getting-started/snippets/app-with-redis-snippets.bicep b/docs/content/getting-started/snippets/app-with-redis-snippets.bicep index 5309bffa9..bbc49d237 100644 --- a/docs/content/getting-started/snippets/app-with-redis-snippets.bicep +++ b/docs/content/getting-started/snippets/app-with-redis-snippets.bicep @@ -10,7 +10,7 @@ resource demo 'Applications.Core/containers@2023-10-01-preview' = { properties: { application: application container: { - image: 'radius.azurecr.io/samples/demo:latest' + image: 'ghcr.io/radius-project/samples/demo:latest' ports: { web: { containerPort: 3000 diff --git a/docs/content/getting-started/snippets/app-with-redis.bicep b/docs/content/getting-started/snippets/app-with-redis.bicep index 4680d2acd..352ae5c22 100644 --- a/docs/content/getting-started/snippets/app-with-redis.bicep +++ b/docs/content/getting-started/snippets/app-with-redis.bicep @@ -9,7 +9,7 @@ resource demo 'Applications.Core/containers@2023-10-01-preview' = { properties: { application: application container: { - image: 'radius.azurecr.io/samples/demo:latest' + image: 'ghcr.io/radius-project/samples/demo:latest' ports: { web: { containerPort: 3000 diff --git a/docs/content/getting-started/snippets/app.bicep b/docs/content/getting-started/snippets/app.bicep index 334c0c027..5f976ec14 100644 --- a/docs/content/getting-started/snippets/app.bicep +++ b/docs/content/getting-started/snippets/app.bicep @@ -9,7 +9,7 @@ resource demo 'Applications.Core/containers@2023-10-01-preview' = { properties: { application: application container: { - image: 'radius.azurecr.io/samples/demo:latest' + image: 'ghcr.io/radius-project/samples/demo:latest' ports: { web: { containerPort: 3000 diff --git a/docs/content/guides/author-apps/aws/howto-aws-resources/snippets/app.bicep b/docs/content/guides/author-apps/aws/howto-aws-resources/snippets/app.bicep index 70e2a1c43..0673c98a5 100644 --- a/docs/content/guides/author-apps/aws/howto-aws-resources/snippets/app.bicep +++ b/docs/content/guides/author-apps/aws/howto-aws-resources/snippets/app.bicep @@ -45,7 +45,7 @@ resource frontend 'Applications.Core/containers@2023-10-01-preview' = { AWS_SECRET_ACCESS_KEY: aws_secret_access_key AWS_DEFAULT_REGION: aws_region } - image: 'radius.azurecr.io/samples/aws:latest' + image: 'ghcr.io/radius-project/samples/aws:latest' } } } diff --git a/docs/content/guides/author-apps/aws/howto-aws-resources/snippets/s3app.bicep b/docs/content/guides/author-apps/aws/howto-aws-resources/snippets/s3app.bicep index 76a5f1cc4..53f425470 100644 --- a/docs/content/guides/author-apps/aws/howto-aws-resources/snippets/s3app.bicep +++ b/docs/content/guides/author-apps/aws/howto-aws-resources/snippets/s3app.bicep @@ -46,7 +46,7 @@ resource frontend 'Applications.Core/containers@2023-10-01-preview' = { AWS_SECRET_ACCESS_KEY: aws_secret_access_key AWS_DEFAULT_REGION: aws_region } - image: 'radius.azurecr.io/samples/aws:latest' + image: 'ghcr.io/radius-project/samples/aws:latest' } } } diff --git a/docs/content/guides/author-apps/aws/overview/snippets/aws.bicep b/docs/content/guides/author-apps/aws/overview/snippets/aws.bicep index 04f8cfa6c..906c4fc52 100644 --- a/docs/content/guides/author-apps/aws/overview/snippets/aws.bicep +++ b/docs/content/guides/author-apps/aws/overview/snippets/aws.bicep @@ -41,7 +41,7 @@ resource frontend 'Applications.Core/containers@2023-10-01-preview' = { AWS_SECRET_ACCESS_KEY: aws_secret_access_key AWS_DEFAULT_REGION: aws_region } - image: 'radius.azurecr.io/samples/aws:latest' + image: 'ghcr.io/radius-project/samples/aws:latest' } } } diff --git a/docs/content/guides/author-apps/containers/howto-connect-dependencies/snippets/app-with-redis.bicep b/docs/content/guides/author-apps/containers/howto-connect-dependencies/snippets/app-with-redis.bicep index 423f0810a..f1f91549d 100644 --- a/docs/content/guides/author-apps/containers/howto-connect-dependencies/snippets/app-with-redis.bicep +++ b/docs/content/guides/author-apps/containers/howto-connect-dependencies/snippets/app-with-redis.bicep @@ -10,7 +10,7 @@ resource demo 'Applications.Core/containers@2023-10-01-preview' = { properties: { application: application container: { - image: 'radius.azurecr.io/samples/demo:latest' + image: 'ghcr.io/radius-project/samples/demo:latest' ports: { web: { containerPort: 3000 diff --git a/docs/content/guides/author-apps/containers/howto-connect-dependencies/snippets/app.bicep b/docs/content/guides/author-apps/containers/howto-connect-dependencies/snippets/app.bicep index a6e21b966..82919de41 100644 --- a/docs/content/guides/author-apps/containers/howto-connect-dependencies/snippets/app.bicep +++ b/docs/content/guides/author-apps/containers/howto-connect-dependencies/snippets/app.bicep @@ -8,7 +8,7 @@ resource demo 'Applications.Core/containers@2023-10-01-preview' = { properties: { application: application container: { - image: 'radius.azurecr.io/samples/demo:latest' + image: 'ghcr.io/radius-project/samples/demo:latest' ports: { web: { containerPort: 3000 diff --git a/docs/content/guides/author-apps/containers/howto-volumes/snippets/1-app.bicep b/docs/content/guides/author-apps/containers/howto-volumes/snippets/1-app.bicep index 753e50052..898371cb6 100644 --- a/docs/content/guides/author-apps/containers/howto-volumes/snippets/1-app.bicep +++ b/docs/content/guides/author-apps/containers/howto-volumes/snippets/1-app.bicep @@ -14,7 +14,7 @@ resource container 'Applications.Core/containers@2023-10-01-preview' = { properties: { application: app.id container: { - image: 'radius.azurecr.io/samples/volumes:latest' + image: 'ghcr.io/radius-project/samples/volumes:latest' } } } diff --git a/docs/content/guides/author-apps/containers/howto-volumes/snippets/2-app.bicep b/docs/content/guides/author-apps/containers/howto-volumes/snippets/2-app.bicep index 303d67575..5bb5398d3 100644 --- a/docs/content/guides/author-apps/containers/howto-volumes/snippets/2-app.bicep +++ b/docs/content/guides/author-apps/containers/howto-volumes/snippets/2-app.bicep @@ -15,7 +15,7 @@ resource container 'Applications.Core/containers@2023-10-01-preview' = { properties: { application: app.id container: { - image: 'radius.azurecr.io/samples/volumes:latest' + image: 'ghcr.io/radius-project/samples/volumes:latest' volumes: { tmp: { kind: 'ephemeral' diff --git a/docs/content/guides/author-apps/networking/howto-gateways/snippets/app.bicep b/docs/content/guides/author-apps/networking/howto-gateways/snippets/app.bicep index a82b82578..8b90d49c5 100644 --- a/docs/content/guides/author-apps/networking/howto-gateways/snippets/app.bicep +++ b/docs/content/guides/author-apps/networking/howto-gateways/snippets/app.bicep @@ -9,7 +9,7 @@ resource frontend 'Applications.Core/containers@2023-10-01-preview' = { properties: { application: application container: { - image: 'radius.azurecr.io/samples/demo:latest' + image: 'ghcr.io/radius-project/samples/demo:latest' ports: { web: { containerPort: 3000 diff --git a/docs/content/guides/author-apps/networking/howto-service-networking/snippets/1-app.bicep b/docs/content/guides/author-apps/networking/howto-service-networking/snippets/1-app.bicep index 5944b0fe0..9bbe002fd 100644 --- a/docs/content/guides/author-apps/networking/howto-service-networking/snippets/1-app.bicep +++ b/docs/content/guides/author-apps/networking/howto-service-networking/snippets/1-app.bicep @@ -8,7 +8,7 @@ resource frontend 'Applications.Core/containers@2023-10-01-preview' = { properties: { application: application container: { - image: 'radius.azurecr.io/samples/demo:latest' + image: 'ghcr.io/radius-project/samples/demo:latest' ports: { web: { containerPort: 3000 diff --git a/docs/content/guides/author-apps/networking/howto-service-networking/snippets/2-app.bicep b/docs/content/guides/author-apps/networking/howto-service-networking/snippets/2-app.bicep index ccee12e68..4d9fe4353 100644 --- a/docs/content/guides/author-apps/networking/howto-service-networking/snippets/2-app.bicep +++ b/docs/content/guides/author-apps/networking/howto-service-networking/snippets/2-app.bicep @@ -9,7 +9,7 @@ resource frontend 'Applications.Core/containers@2023-10-01-preview' = { properties: { application: application container: { - image: 'radius.azurecr.io/samples/demo:latest' + image: 'ghcr.io/radius-project/samples/demo:latest' ports: { web: { containerPort: 3000 diff --git a/docs/content/guides/author-apps/networking/howto-tls/snippets/app-existing.bicep b/docs/content/guides/author-apps/networking/howto-tls/snippets/app-existing.bicep index e4842a0ac..e848fde02 100644 --- a/docs/content/guides/author-apps/networking/howto-tls/snippets/app-existing.bicep +++ b/docs/content/guides/author-apps/networking/howto-tls/snippets/app-existing.bicep @@ -9,7 +9,7 @@ resource frontend 'Applications.Core/containers@2023-10-01-preview' = { properties: { application: application container: { - image: 'radius.azurecr.io/samples/demo:latest' + image: 'ghcr.io/radius-project/samples/demo:latest' ports: { web: { containerPort: 3000 diff --git a/docs/content/guides/author-apps/networking/howto-tls/snippets/app-new.bicep b/docs/content/guides/author-apps/networking/howto-tls/snippets/app-new.bicep index a44d07360..e01e5aa17 100644 --- a/docs/content/guides/author-apps/networking/howto-tls/snippets/app-new.bicep +++ b/docs/content/guides/author-apps/networking/howto-tls/snippets/app-new.bicep @@ -9,7 +9,7 @@ resource frontend 'Applications.Core/containers@2023-10-01-preview' = { properties: { application: application container: { - image: 'radius.azurecr.io/samples/demo:latest' + image: 'ghcr.io/radius-project/samples/demo:latest' ports: { web: { containerPort: 3000 diff --git a/docs/content/guides/deploy-apps/environments/howto-environment/index.md b/docs/content/guides/deploy-apps/environments/howto-environment/index.md index d247a1173..bf1241797 100644 --- a/docs/content/guides/deploy-apps/environments/howto-environment/index.md +++ b/docs/content/guides/deploy-apps/environments/howto-environment/index.md @@ -66,8 +66,8 @@ Radius Environments can be setup with the rad CLI via two paths: interactive or ``` ``` NAME TYPE TEMPLATE KIND TEMPLATE - default Applications.Datastores/mongoDatabases bicep radius.azurecr.io/recipes/dev/mongodatabases:latest - default Applications.Datastores/redisCaches bicep radius.azurecr.io/recipes/dev/rediscaches:latest + default Applications.Datastores/mongoDatabases bicep ghcr.io/radius-project/recipes/local-dev/mongodatabases:latest + default Applications.Datastores/redisCaches bicep ghcr.io/radius-project/recipes/local-dev/rediscaches:latest ``` You can follow the [Recipes]({{< ref "/guides/recipes/overview" >}}) documentation to learn more about the Recipes and how to use them in your application. diff --git a/docs/content/guides/operations/kubernetes/kubernetes-install/index.md b/docs/content/guides/operations/kubernetes/kubernetes-install/index.md index 11b857474..917d46f15 100644 --- a/docs/content/guides/operations/kubernetes/kubernetes-install/index.md +++ b/docs/content/guides/operations/kubernetes/kubernetes-install/index.md @@ -47,10 +47,10 @@ rad install kubernetes --set global.zipkin.url=http://jaeger-collector.radius-mo | `global.prometheus.enabled` | `true` | Enables Prometheus metrics. Defaults to `true` | `global.prometheus.path` | `"/metrics"` | Metrics endpoint | `global.prometheus.port` | `9090` | Metrics port -| `rp.image` | `radius.azurecr.io/appcore-rp` | Location of the Radius resource provider (RP) image +| `rp.image` | `ghcr.io/radius-project/applications-rp:latest` //TODO | Location of the Radius resource provider (RP) image | `rp.tag` | `latest` | Tag of the Radius resource provider (RP) image |`rp.publicEndpointOverride` | `""` | Public endpoint of the Kubernetes cluster. Overrides the default behavior of automatically detecting the public endpoint. -| `de.image` | `radius.azurecr.io/deployment-engine` | Location of the Bicep deployment engine (DE) image +| `de.image` | `ghcr.io/radius-project/deployment-engine` | Location of the Bicep deployment engine (DE) image | `de.tag` | `latest` | Tag of the Bicep deployment engine (DE) image -| `ucp.image` | `radius.azurecr.io/ucpd` | Location of universal control plane (UCP) image +| `ucp.image` | `ghcr.io/radius-project/ucpd` | Location of universal control plane (UCP) image | `ucp.tag` | `latest` | Tag of the universal control plane (UCP) image diff --git a/docs/content/guides/recipes/howto-author-recipes/index.md b/docs/content/guides/recipes/howto-author-recipes/index.md index 520cd5763..228b58799 100644 --- a/docs/content/guides/recipes/howto-author-recipes/index.md +++ b/docs/content/guides/recipes/howto-author-recipes/index.md @@ -107,7 +107,7 @@ Resources are populated automatically for Bicep Recipes for any new Azure or AWS Recipes leverage [Bicep registries](https://learn.microsoft.com/azure/azure-resource-manager/bicep/private-module-registry) for template storage. Once you've authored a Recipe, you can publish it to your preferred OCI-compliant registry with [`rad bicep publish`]({{< ref rad_bicep_publish >}}): ```bash -rad bicep publish --file myrecipe.bicep --target br:myregistry.azurecr.io/recipes/myrecipe:1.1.0 +rad bicep publish --file myrecipe.bicep --target br:ghcr.io/USERNAME/recipes/myrecipe:1.1.0 ``` {{% /codetab %}} @@ -129,7 +129,7 @@ Now that your Recipe template has been stored, you can add it your Radius Enviro {{% codetab %}} ```bash -rad recipe register myrecipe --environment myenv --resource-type Applications.Datastores/redisCaches --template-kind bicep --template-path myregistry.azurecr.io/recipes/myrecipe:1.1.0 +rad recipe register myrecipe --environment myenv --resource-type Applications.Datastores/redisCaches --template-kind bicep --template-path ghcr.io/USERNAME/recipes/myrecipe:1.1.0 ``` {{% /codetab %}} diff --git a/docs/content/guides/recipes/howto-author-recipes/snippets/environment.bicep b/docs/content/guides/recipes/howto-author-recipes/snippets/environment.bicep index 0f9307deb..8413972d3 100644 --- a/docs/content/guides/recipes/howto-author-recipes/snippets/environment.bicep +++ b/docs/content/guides/recipes/howto-author-recipes/snippets/environment.bicep @@ -12,7 +12,7 @@ resource env 'Applications.Core/environments@2023-10-01-preview' = { 'Applications.Datastores/redisCaches':{ 'redis-bicep': { templateKind: 'bicep' - templatePath: 'https://myregistry.azurecr.io/recipes/myrecipe:1.1.0' + templatePath: 'https://ghcr.io/USERNAME/recipes/myrecipe:1.1.0' // Optionally set parameters for all resources calling this Recipe parameters: { port: 3000 diff --git a/docs/content/guides/recipes/howto-dev-recipes/index.md b/docs/content/guides/recipes/howto-dev-recipes/index.md index be10b1949..053adf59a 100644 --- a/docs/content/guides/recipes/howto-dev-recipes/index.md +++ b/docs/content/guides/recipes/howto-dev-recipes/index.md @@ -42,13 +42,13 @@ Local development environments created by the rad init command include a set of ``` NAME TYPE TEMPLATE KIND TEMPLATE VERSION TEMPLATE - default Applications.Datastores/sqlDatabases bicep radius.azurecr.io/recipes/local-dev/sqldatabases:latest - default Applications.Messaging/rabbitMQQueues bicep radius.azurecr.io/recipes/local-dev/rabbitmqqueues:latest - default Applications.Dapr/pubSubBrokers bicep radius.azurecr.io/recipes/local-dev/pubsubbrokers:latest - default Applications.Dapr/secretStores bicep radius.azurecr.io/recipes/local-dev/secretstores:latest - default Applications.Dapr/stateStores bicep radius.azurecr.io/recipes/local-dev/statestores:latest - default Applications.Datastores/mongoDatabases bicep radius.azurecr.io/recipes/local-dev/mongodatabases:latest - default Applications.Datastores/redisCaches bicep radius.azurecr.io/recipes/local-dev/rediscaches:latest + default Applications.Datastores/sqlDatabases bicep ghcr.io/radius-project/recipes/local-dev/sqldatabases:latest + default Applications.Messaging/rabbitMQQueues bicep ghcr.io/radius-project/recipes/local-dev/rabbitmqqueues:latest + default Applications.Dapr/pubSubBrokers bicep ghcr.io/radius-project/recipes/local-dev/pubsubbrokers:latest + default Applications.Dapr/secretStores bicep ghcr.io/radius-project/recipes/local-dev/secretstores:latest + default Applications.Dapr/stateStores bicep ghcr.io/radius-project/recipes/local-dev/statestores:latest + default Applications.Datastores/mongoDatabases bicep ghcr.io/radius-project/recipes/local-dev/mongodatabases:latest + default Applications.Datastores/redisCaches bicep ghcr.io/radius-project/recipes/local-dev/rediscaches:latest ``` > Visit the [Recipes repo](https://github.com/radius-project/recipes) to learn more about the definition of these `local-dev` recipe templates. diff --git a/docs/content/guides/recipes/howto-dev-recipes/snippets/app.bicep b/docs/content/guides/recipes/howto-dev-recipes/snippets/app.bicep index 63ec11ae3..9cc09ef03 100644 --- a/docs/content/guides/recipes/howto-dev-recipes/snippets/app.bicep +++ b/docs/content/guides/recipes/howto-dev-recipes/snippets/app.bicep @@ -11,7 +11,7 @@ resource frontend 'Applications.Core/containers@2023-10-01-preview' = { properties: { application: application container: { - image: 'radius.azurecr.io/tutorial/webapp:edge' + image: 'ghcr.io/radius-project/samples/demo:latest' } connections: { // Define a connection to the redis container diff --git a/docs/content/reference/resource-schema/core-schema/container-schema/_index.md b/docs/content/reference/resource-schema/core-schema/container-schema/_index.md index 01cb936d7..4c74dc6b7 100644 --- a/docs/content/reference/resource-schema/core-schema/container-schema/_index.md +++ b/docs/content/reference/resource-schema/core-schema/container-schema/_index.md @@ -34,7 +34,7 @@ weight: 300 | Key | Required | Description | Example | |------|:--------:|-------------|---------| -| image | y | The registry and image to download and run in your container. Follows the format `:/:` where registry hostname is optional and defaults to the Docker public registry, port is optional and defaults to 443, tag is optional and defaults to `latest`.| `myregistry.azurecr.io/myimage:latest` +| image | y | The registry and image to download and run in your container. Follows the format `:/:` where registry hostname is optional and defaults to the Docker public registry, port is optional and defaults to 443, tag is optional and defaults to `latest`.| `ghcr.io/USERNAME/myimage:latest` | env | n | A list of environment variables to be set for the container. | `'ENV_VAR': 'value'` | command | n | Entrypoint array. Overrides the container image's ENTRYPOINT. | `['/bin/sh']` | args | n | Arguments to the entrypoint. Overrides the container image's CMD. | `['-c', 'while true; do echo hello; sleep 10;done']` diff --git a/docs/content/reference/resource-schema/core-schema/container-schema/snippets/base-container.yaml b/docs/content/reference/resource-schema/core-schema/container-schema/snippets/base-container.yaml index ce9084c94..a0c37ba77 100644 --- a/docs/content/reference/resource-schema/core-schema/container-schema/snippets/base-container.yaml +++ b/docs/content/reference/resource-schema/core-schema/container-schema/snippets/base-container.yaml @@ -16,4 +16,4 @@ spec: spec: containers: - name: frontend - image: radiusdev.azurecr.io/magpie:latest \ No newline at end of file + image: ghcr.io/radius-project/magpiego:latest \ No newline at end of file diff --git a/docs/content/reference/resource-schema/core-schema/container-schema/snippets/container.bicep b/docs/content/reference/resource-schema/core-schema/container-schema/snippets/container.bicep index a5f5b5875..291167f14 100644 --- a/docs/content/reference/resource-schema/core-schema/container-schema/snippets/container.bicep +++ b/docs/content/reference/resource-schema/core-schema/container-schema/snippets/container.bicep @@ -101,7 +101,7 @@ resource frontend 'Applications.Core/containers@2023-10-01-preview' = { containers: [ { name: 'log-collector' - image: 'radiusdev.azurecr.io/fluent/fluent-bit:2.1.8' + image: 'ghcr.io/radius-project/fluent-bit:2.1.8' } ] hostNetwork: true diff --git a/docs/content/reference/resource-schema/core-schema/environment-schema/index.md b/docs/content/reference/resource-schema/core-schema/environment-schema/index.md index 9e7fe5932..2e9f8bcf6 100644 --- a/docs/content/reference/resource-schema/core-schema/environment-schema/index.md +++ b/docs/content/reference/resource-schema/core-schema/environment-schema/index.md @@ -56,7 +56,7 @@ Details on what to run and how to run it are defined in the `container` property |------|:--------:|-------------|---------| | \ | y | The name of the Recipe. Must be unique within the resource-type. | `myrecipe` | templateKind | y | Format of the template provided by the recipe. Allowed values: bicep | `'bicep'` -| templatePath | y | The path to the Recipe contents. For Bicep Recipes this is a Bicep module registry address. | `'mycr.azurecr.io/recipes/myrecipe:1.0'` +| templatePath | y | The path to the Recipe contents. For Bicep Recipes this is a Bicep module registry address. | `'ghcr.io/USERNAME/recipes/myrecipe:1.0'` | parameters | n | A list of parameters to set on the Recipe for every Recipe usage and deployment. Can be overridden by the resource calling the Recipe. | `capacity: 1` ### extensions diff --git a/docs/content/reference/resource-schema/core-schema/extender/snippets/extender-manual.bicep b/docs/content/reference/resource-schema/core-schema/extender/snippets/extender-manual.bicep index 7c8013c0e..9a3c03b78 100644 --- a/docs/content/reference/resource-schema/core-schema/extender/snippets/extender-manual.bicep +++ b/docs/content/reference/resource-schema/core-schema/extender/snippets/extender-manual.bicep @@ -30,7 +30,7 @@ resource publisher 'Applications.Core/containers@2023-10-01-preview' = { properties: { application: app.id container: { - image: 'radius.azurecr.io/magpie:latest' + image: 'ghcr.io/radius-project/magpiego:latest' env: { TWILIO_NUMBER: twilio.properties.fromNumber TWILIO_SID: twilio.secrets('accountSid') diff --git a/docs/content/reference/resource-schema/core-schema/extender/snippets/extender-recipe.bicep b/docs/content/reference/resource-schema/core-schema/extender/snippets/extender-recipe.bicep index e1cc28979..9723169f8 100644 --- a/docs/content/reference/resource-schema/core-schema/extender/snippets/extender-recipe.bicep +++ b/docs/content/reference/resource-schema/core-schema/extender/snippets/extender-recipe.bicep @@ -21,7 +21,7 @@ resource publisher 'Applications.Core/containers@2023-10-01-preview' = { properties: { application: application container: { - image: 'radius.azurecr.io/magpie:latest' + image: 'ghcr.io/radius-project/magpiego:latest' env: { TWILIO_NUMBER: twilio.properties.fromNumber TWILIO_SID: twilio.secrets('accountSid') diff --git a/docs/content/reference/resource-schema/dapr-schema/dapr-pubsub/snippets/dapr-pubsub-manual.bicep b/docs/content/reference/resource-schema/dapr-schema/dapr-pubsub/snippets/dapr-pubsub-manual.bicep index f37ccd3dd..203d26d5a 100644 --- a/docs/content/reference/resource-schema/dapr-schema/dapr-pubsub/snippets/dapr-pubsub-manual.bicep +++ b/docs/content/reference/resource-schema/dapr-schema/dapr-pubsub/snippets/dapr-pubsub-manual.bicep @@ -20,7 +20,7 @@ resource publisher 'Applications.Core/containers@2023-10-01-preview' = { } } container: { - image: 'radius.azurecr.io/magpie:latest' + image: 'ghcr.io/radius-project/magpiego:latest' } } } diff --git a/docs/content/reference/resource-schema/dapr-schema/dapr-statestore/snippets/dapr-statestore-recipe.bicep b/docs/content/reference/resource-schema/dapr-schema/dapr-statestore/snippets/dapr-statestore-recipe.bicep index 6fc5ac267..d19dfc521 100644 --- a/docs/content/reference/resource-schema/dapr-schema/dapr-statestore/snippets/dapr-statestore-recipe.bicep +++ b/docs/content/reference/resource-schema/dapr-schema/dapr-statestore/snippets/dapr-statestore-recipe.bicep @@ -11,7 +11,7 @@ resource myapp 'Applications.Core/containers@2023-10-01-preview' = { properties: { application: application container: { - image: 'radius.azurecr.io/magpie:latest' + image: 'ghcr.io/radius-project/magpiego:latest' } connections: { statestore: { diff --git a/docs/content/tutorials/new-app/index.md b/docs/content/tutorials/new-app/index.md index 3885d0ccd..4d08874d5 100644 --- a/docs/content/tutorials/new-app/index.md +++ b/docs/content/tutorials/new-app/index.md @@ -217,7 +217,7 @@ In addition to containers, you can add dependencies like Redis caches, Dapr Stat ``` NAME TYPE TEMPLATE KIND TEMPLATE VERSION TEMPLATE - default Applications.Datastores/mongoDatabases bicep radius.azurecr.io/recipes/local-dev/mongodatabases:latest + default Applications.Datastores/mongoDatabases bicep ghcr.io/radius-project/recipes/local-dev/mongodatabases:latest PARAMETER NAME TYPE DEFAULT VALUE MIN MAX username string admin - - diff --git a/docs/content/tutorials/new-app/snippets/1-app.bicep b/docs/content/tutorials/new-app/snippets/1-app.bicep index 9e98f38fe..4ea1ff698 100644 --- a/docs/content/tutorials/new-app/snippets/1-app.bicep +++ b/docs/content/tutorials/new-app/snippets/1-app.bicep @@ -9,7 +9,7 @@ resource demo 'Applications.Core/containers@2023-10-01-preview' = { properties: { application: application container: { - image: 'radius.azurecr.io/tutorial/demo:edge' + image: 'ghcr.io/radius-project/samples/demo:latest' ports: { web: { containerPort: 3000 diff --git a/docs/content/tutorials/new-app/snippets/2-app-mongo.bicep b/docs/content/tutorials/new-app/snippets/2-app-mongo.bicep index 39076d5db..141268a39 100644 --- a/docs/content/tutorials/new-app/snippets/2-app-mongo.bicep +++ b/docs/content/tutorials/new-app/snippets/2-app-mongo.bicep @@ -10,7 +10,7 @@ resource demo 'Applications.Core/containers@2023-10-01-preview' = { properties: { application: application container: { - image: 'radius.azurecr.io/tutorial/demo:edge' + image: 'ghcr.io/radius-project/samples/tutorial/demo:edge' env: { FOO: 'bar' } diff --git a/docs/content/tutorials/new-app/snippets/3-app-backend.bicep b/docs/content/tutorials/new-app/snippets/3-app-backend.bicep index 4cc06a412..9f4e76db7 100644 --- a/docs/content/tutorials/new-app/snippets/3-app-backend.bicep +++ b/docs/content/tutorials/new-app/snippets/3-app-backend.bicep @@ -13,7 +13,7 @@ resource frontend 'Applications.Core/containers@2023-10-01-preview' = { properties: { application: application container: { - image: 'radius.azurecr.io/tutorial/demo:edge' + image: 'ghcr.io/radius-project/samples/tutorial/demo:edge' env: { FOO: 'bar' } diff --git a/docs/content/tutorials/new-app/snippets/4-app-gateway.bicep b/docs/content/tutorials/new-app/snippets/4-app-gateway.bicep index c6b2ff067..e551086b6 100644 --- a/docs/content/tutorials/new-app/snippets/4-app-gateway.bicep +++ b/docs/content/tutorials/new-app/snippets/4-app-gateway.bicep @@ -13,7 +13,7 @@ resource frontend 'Applications.Core/containers@2023-10-01-preview' = { properties: { application: application container: { - image: 'radius.azurecr.io/tutorial/demo:edge' + image: 'ghcr.io/radius-project/samples/tutorial/demo:edge' env: { FOO: 'bar' } diff --git a/docs/content/tutorials/tutorial-dapr/snippets/dapr.bicep b/docs/content/tutorials/tutorial-dapr/snippets/dapr.bicep index e21686369..62bd724d2 100644 --- a/docs/content/tutorials/tutorial-dapr/snippets/dapr.bicep +++ b/docs/content/tutorials/tutorial-dapr/snippets/dapr.bicep @@ -18,7 +18,7 @@ resource backend 'Applications.Core/containers@2023-10-01-preview' = { application: app.id container: { // This image is where the app's backend code lives - image: 'radius.azurecr.io/samples/dapr-backend:latest' + image: 'ghcr.io/radius-project/samples/dapr-backend:latest' ports: { orders: { containerPort: 3000 @@ -59,7 +59,7 @@ resource frontend 'Applications.Core/containers@2023-10-01-preview' = { application: app.id container: { // This image is where the app's frontend code lives - image: 'radius.azurecr.io/samples/dapr-frontend:latest' + image: 'ghcr.io/radius-project/samples/dapr-frontend:latest' env: { // An environment variable to tell the frontend container where to find the backend CONNECTION_BACKEND_APPID: 'backend' diff --git a/docs/content/tutorials/tutorial-recipe/index.md b/docs/content/tutorials/tutorial-recipe/index.md index c4c3b202a..03c835f23 100644 --- a/docs/content/tutorials/tutorial-recipe/index.md +++ b/docs/content/tutorials/tutorial-recipe/index.md @@ -62,13 +62,13 @@ Developers don't need to specify what cloud resources they're using in their app ``` NAME TYPE TEMPLATE KIND TEMPLATE VERSION TEMPLATE - default Applications.Datastores/sqlDatabases bicep radius.azurecr.io/recipes/local-dev/sqldatabases:latest - default Applications.Messaging/rabbitMQQueues bicep radius.azurecr.io/recipes/local-dev/rabbitmqqueues:latest - default Applications.Dapr/pubSubBrokers bicep radius.azurecr.io/recipes/local-dev/pubsubbrokers:latest - default Applications.Dapr/secretStores bicep radius.azurecr.io/recipes/local-dev/secretstores:latest - default Applications.Dapr/stateStores bicep radius.azurecr.io/recipes/local-dev/statestores:latest - default Applications.Datastores/mongoDatabases bicep radius.azurecr.io/recipes/local-dev/mongodatabases:latest - default Applications.Datastores/redisCaches bicep radius.azurecr.io/recipes/local-dev/rediscaches:latest + default Applications.Datastores/sqlDatabases bicep ghcr.io/radius-project/recipes/local-dev/sqldatabases:latest + default Applications.Messaging/rabbitMQQueues bicep ghcr.io/radius-project/recipes/local-dev/rabbitmqqueues:latest + default Applications.Dapr/pubSubBrokers bicep ghcr.io/radius-project/recipes/local-dev/pubsubbrokers:latest + default Applications.Dapr/secretStores bicep ghcr.io/radius-project/recipes/local-dev/secretstores:latest + default Applications.Dapr/stateStores bicep ghcr.io/radius-project/recipes/local-dev/statestores:latest + default Applications.Datastores/mongoDatabases bicep ghcr.io/radius-project/recipes/local-dev/mongodatabases:latest + default Applications.Datastores/redisCaches bicep ghcr.io/radius-project/recipes/local-dev/rediscaches:latest ``` {{< alert title="💡 local-dev Recipes" color="info" >}} @@ -161,7 +161,7 @@ This step requires an Azure subscription or an AWS account to deploy cloud resou 2. Register the Recipe to your Radius Environment: ```bash - rad recipe register azure --environment default --template-kind bicep --template-path radius.azurecr.io/recipes/azure/rediscaches:{{< param tag_version >}} --resource-type Applications.Datastores/redisCaches + rad recipe register azure --environment default --template-kind bicep --template-path ghcr.io/radius-project/recipes/azure/rediscaches:{{< param tag_version >}} --resource-type Applications.Datastores/redisCaches ``` 3. Update your db resource to use the `azure` Recipe, instead of the default Recipe: @@ -238,7 +238,7 @@ This step requires an Azure subscription or an AWS account to deploy cloud resou 1. Register the Recipe to your Radius Environment: ```bash - rad recipe register aws --environment default --template-kind bicep --template-path radius.azurecr.io/recipes/aws/rediscaches:latest --resource-type Applications.Datastores/redisCaches --parameters eksClusterName= + rad recipe register aws --environment default --template-kind bicep --template-path ghcr.io/radius-project/recipes/aws/rediscaches:latest --resource-type Applications.Datastores/redisCaches --parameters eksClusterName= ``` > *Note: Passing the `eksClusterName` during the registration of the Recipe is a temporary additional step as Radius builds up AWS support.* diff --git a/docs/content/tutorials/tutorial-recipe/snippets/app.bicep b/docs/content/tutorials/tutorial-recipe/snippets/app.bicep index c679705c1..7901b942c 100644 --- a/docs/content/tutorials/tutorial-recipe/snippets/app.bicep +++ b/docs/content/tutorials/tutorial-recipe/snippets/app.bicep @@ -11,7 +11,7 @@ resource frontend 'Applications.Core/containers@2023-10-01-preview' = { properties: { application: application container: { - image: 'radius.azurecr.io/samples/demo:latest' + image: 'ghcr.io/radius-project/samples/demo:latest' } connections: { // Define a connection to the redis container diff --git a/holding-pen/reference-apps/aws-sqs/snippets/app.bicep b/holding-pen/reference-apps/aws-sqs/snippets/app.bicep index 16f12d340..9b6bc7a8e 100644 --- a/holding-pen/reference-apps/aws-sqs/snippets/app.bicep +++ b/holding-pen/reference-apps/aws-sqs/snippets/app.bicep @@ -44,7 +44,7 @@ resource producer 'Applications.Core/containers@2023-10-01-preview' = { }, aws_credential ) - image: 'radius.azurecr.io/samples/aws-sqs:latest' + image: 'ghcr.io/radius-project/samples/aws-sqs:latest' } } } @@ -61,7 +61,7 @@ resource consumer 'Applications.Core/containers@2023-10-01-preview' = { }, aws_credential ) - image: 'radius.azurecr.io/samples/aws-sqs:latest' + image: 'ghcr.io/radius-project/samples/aws-sqs:latest' } } }