From f867c2641d4c827039ebc799c8cf879cd8673e8b Mon Sep 17 00:00:00 2001 From: Radius CI Bot Date: Mon, 29 Sep 2025 21:08:37 +0000 Subject: [PATCH 1/3] Update docs for v0.51.0 --- docs/config.toml | 8 ++++---- docs/layouts/partials/hooks/body-end.html | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/config.toml b/docs/config.toml index 01ff03b9f..bf7453a61 100644 --- a/docs/config.toml +++ b/docs/config.toml @@ -1,4 +1,4 @@ -baseURL = "https://edge.docs.radapp.io/" +baseURL = "https://docs.radapp.io/" languageCode = "en-us" title = "Radius Docs" theme = "docsy" @@ -67,9 +67,9 @@ tag = "tags" [params] copyright = "The Radius Authors. The Linux Foundation has registered trademarks and uses trademarks. For a list of trademarks of The Linux Foundation, please see the https://linuxfoundation.org/trademark-usage/ page." -version = "edge" +version = "v0.51" tag_version = "latest" -chart_version = "0.26.0" +chart_version = "0.51.0" # Algolia Search algolia_docsearch = true @@ -77,7 +77,7 @@ algolia_docsearch = true # GitHub Information github_repo = "https://github.com/radius-project/docs" github_subdir = "docs" -github_branch = "edge" +github_branch = "v0.51" github_project_repo = "https://github.com/radius-project/radius" # Versioning diff --git a/docs/layouts/partials/hooks/body-end.html b/docs/layouts/partials/hooks/body-end.html index 3f4109e18..f640ff308 100644 --- a/docs/layouts/partials/hooks/body-end.html +++ b/docs/layouts/partials/hooks/body-end.html @@ -5,7 +5,7 @@ container: '#docsearch', appId: 'ED67NSVSZS', apiKey: '21e2920c3a9c29b98cbc382694413f29', - indexName: 'radapp-dev-edge', + indexName: 'radapp-dev', }); {{ end }} From 67ac03c5f02bbcac41854773e182a7d4bddb86d3 Mon Sep 17 00:00:00 2001 From: Andrew Matveychuk Date: Fri, 3 Oct 2025 22:53:55 +0200 Subject: [PATCH 2/3] Added missing details about configuring access for Azure provider (#1539) Signed-off-by: Andrew Matveychuk --- .../howto-azure-provider-sp/index.md | 19 +++++++++++-------- 1 file changed, 11 insertions(+), 8 deletions(-) diff --git a/docs/content/guides/operations/providers/azure-provider/howto-azure-provider-sp/index.md b/docs/content/guides/operations/providers/azure-provider/howto-azure-provider-sp/index.md index 1b5e968c1..3ac171c7c 100644 --- a/docs/content/guides/operations/providers/azure-provider/howto-azure-provider-sp/index.md +++ b/docs/content/guides/operations/providers/azure-provider/howto-azure-provider-sp/index.md @@ -10,8 +10,9 @@ tags: ["Azure"] The Azure provider allows you to deploy and connect to Azure resources from a self-hosted Radius Environment. It can be configured: -- [Interactively via `rad init`](#interactive-configuration) -- [Manually via `rad env update` and `rad credential register`](#manual-configuration) +- [Prerequisites](#prerequisites) +- [Interactive configuration](#interactive-configuration) +- [Manual configuration](#manual-configuration) ## Prerequisites @@ -29,9 +30,9 @@ The Azure provider allows you to deploy and connect to Azure resources from a se 1. Follow the prompts, specifying: - **Namespace** - The Kubernetes namespace where your application containers and networking resources will be deployed (different than the Radius control-plane namespace, `radius-system`) - - **Add an Azure provider** - 1. Pick the subscription and resource group to deploy your Azure resources to - 2. Select the "Service Principal" option + - **Add an Azure provider** + 1. Pick the subscription and resource group to deploy your Azure resources to. The resource group should exist. + 2. Select the "Service Principal" option. 3. Run `az ad sp create-for-rbac` to create a Service Principal without a role assignment and obtain your `appId`, `displayName`, `password`, and `tenant` information. ``` @@ -43,6 +44,7 @@ The Azure provider allows you to deploy and connect to Azure resources from a se } ``` Enter the `appId`, `password`, and `tenant` information when prompted. + 4. Grant the service principal access to the resource group using the Azure role that allows creating the resource you plan to deploy. - **Environment name** - The name of the environment to create @@ -66,13 +68,13 @@ The Azure provider allows you to deploy and connect to Azure resources from a se ## Manual configuration -1. Use [`rad env update`]({{< ref rad_environment_update >}}) to update your Radius Environment with your Azure subscription ID and Azure resource group: +1. Use [`rad env update`]({{< ref rad_environment_update >}}) to update your Radius Environment with your Azure subscription ID and Azure resource group. The resource group should exist: ```bash rad env update myEnvironment --azure-subscription-id myAzureSubscriptionId --azure-resource-group myAzureResourceGroup ``` -1. Run `az ad sp create-for-rbac` to create a Service Principal without a role assignment and obtain your `appId`, `displayName`, `password`, and `tenant` information. +2. Run `az ad sp create-for-rbac` to create a Service Principal without a role assignment and obtain your `appId`, `displayName`, `password`, and `tenant` information. ``` { @@ -83,8 +85,9 @@ The Azure provider allows you to deploy and connect to Azure resources from a se } ``` +3. Grant the service principal access to the resource group using the Azure role that allows creating the resource you plan to deploy. -1. Use [`rad credential register azure`]({{< ref rad_credential_register_azure >}}) to add the Azure service principal to your Radius installation: +4. Use [`rad credential register azure`]({{< ref rad_credential_register_azure >}}) to add the Azure service principal to your Radius installation: ```bash rad credential register azure sp --client-id myClientId --client-secret myClientSecret --tenant-id myTenantId From 57a5f73e448e5736b415c581880bd1583b40881b Mon Sep 17 00:00:00 2001 From: Lakshmi Javadekar <103459615+lakshmimsft@users.noreply.github.com> Date: Mon, 6 Oct 2025 13:57:40 -0700 Subject: [PATCH 3/3] Upgrading docs - remove warning about CRDs (#1523) (#1542) (cherry picked from commit 2e057cc8dd76a93a2e146a989be76ce8b3a51ff8) Signed-off-by: Will Tsai <28876888+willtsai@users.noreply.github.com> Co-authored-by: Will <28876888+willtsai@users.noreply.github.com> --- .../operations/kubernetes/kubernetes-upgrade/index.md | 6 ------ 1 file changed, 6 deletions(-) diff --git a/docs/content/guides/operations/kubernetes/kubernetes-upgrade/index.md b/docs/content/guides/operations/kubernetes/kubernetes-upgrade/index.md index e171d9697..f68837244 100644 --- a/docs/content/guides/operations/kubernetes/kubernetes-upgrade/index.md +++ b/docs/content/guides/operations/kubernetes/kubernetes-upgrade/index.md @@ -75,12 +75,6 @@ rad env list ## Important considerations -### CRD updates - -> **Note:** Due to a [Helm limitation](https://helm.sh/docs/chart_best_practices/custom_resource_definitions/), Custom Resource Definitions (CRDs) are only installed during the initial Radius installation and are not automatically updated during upgrades. -> -> If a Radius upgrade includes CRD changes (typically in major version upgrades), you may need to manually update the CRDs. Check the release notes for specific instructions when CRD updates are required. - ### Breaking changes While Radius supports in-place upgrades, breaking changes may still occur between major versions. Always review the [release notes](https://github.com/radius-project/radius/releases) before upgrading to understand any breaking changes or migration steps required.