github radius-project/radius v0.37.0
Radius v0.37.0

latest releases: v0.38.0, v0.38.0-rc1
one month ago

Announcing Radius v0.37.0

Today we're happy to announce the release of Radius v0.37.0. Check out the highlights below, along with the full changelog for more details.

We would like to extend our thanks to all the new and existing contributors who helped make this release possible!

Intro to Radius

If you're new to Radius, check out our website, radapp.io, for more information. Also visit our getting started guide to learn how to install Radius and create your first app.

Highlights

Radius is merged with the official Bicep

Previously Radius used a fork of the Bicep to author and deploy Radius and AWS types. With 0.37 release we have merged our extensibility updates with the upstream and are deprecating the temporary fork of Bicep. To use Radius features with the official Bicep compiler, you need to create a bicepconfig.json with the extensions to author and deploy Radius and AWS types. Please checkout the breaking changes section for detailed guidance.

Radius AWS Cloud provider supports IAM Roles for Service Accounts (IRSA)

You can now configure your AWS cloud provider to use AWS federated identity (IRSA) to deploy and manage AWS resources. With this support, infrastructure operators are not burdened with the rotation of the credentials anymore. More information on how to configure the AWS IRSA

Test Improvements

We separated the cloud tests and non-cloud tests in our functional test workflows to improve the test verification process for contributors. In the new workflow the non-cloud test workflows will trigger automatically when pull requests are submitted, while tests using cloud resources will need approval from approvers/maintainers to be triggered. We also fixed an issue with magpiego image failing for MacOS+M1 chip users by publishing a multi-architectural image.

Breaking changes

  • Radius merge to official Bicep introduces some breaking changes. To use Radius features with the official Bicep compiler please do the following:

    1. Create a bicepconfig.json with the extensions to author and deploy Radius and AWS types. More information here.
    2. Update the import statements in the existing bicep files
      • import radius as radius should become extension radius to use Radius types
      • import aws as aws should become extension aws to use AWS types
      • import kubernetes as kubernetes {} should become extension kubernetes with {} as kubernetes to use Kubernetes types
    3. If you have Radius-Bicep extension installed, please disable and install the official bicep extension. More details here.
  • AWS IRSA support introduces some breaking changes to rad credential register aws CLI command. With the additional identity support, rad credential register aws is now rad credential register aws access-key to register the IAM access-key and rad credential register aws to register the AWS IAM Roles for Service Accounts(IRSA).

New contributors

Welcome to our new contributors who have merged their first PR in this release!

Upgrading to Radius v0.37.0

During our preview stage, an upgrade to Radius v0.37.0 requires a full reinstallation of the Radius control-plane, rad CLI, and all Radius apps. Stay tuned for an in-place upgrade path in the future.

  1. Delete any environments you have created:
    rad env delete <env-name>
  2. Uninstall the previous version of the Radius control-plane:
    rad uninstall kubernetes
  3. Visit the Radius installation guide to install the latest CLI, or download a binary below
  4. Install the latest version of the Radius control-plane:
    rad install kubernetes

Full changelog

Don't miss a new radius release

NewReleases is sending notifications on new releases.