Skip to content

Commit

Permalink
Merge branch 'main' into update_doc
Browse files Browse the repository at this point in the history
  • Loading branch information
nithyatsu authored Oct 14, 2024
2 parents bc22011 + 38fcc3e commit 489772a
Show file tree
Hide file tree
Showing 222 changed files with 15,401 additions and 13,384 deletions.
2 changes: 1 addition & 1 deletion .devcontainer/contributor/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
},
// Prerequisite for Code Generation, see https://github.com/radius-project/radius/tree/main/docs/contributing/contributing-code/contributing-code-prerequisites#code-generation
// Adding workspace as safe directory to avoid permission issues
"postCreateCommand": "git config --global --add safe.directory /workspaces/radius && cd typespec && npm ci && npm install -g autorest && npm install -g oav && go install sigs.k8s.io/controller-tools/cmd/controller-gen@v0.15.0 && go install go.uber.org/mock/[email protected]",
"postCreateCommand": "git config --global --add safe.directory /workspaces/radius && cd typespec && npm ci && npm install -g autorest && npm install -g oav && go install sigs.k8s.io/controller-tools/cmd/controller-gen@v0.16.0 && go install go.uber.org/mock/[email protected]",
"hostRequirements": {
"memory": "8gb"
},
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ jobs:
- name: Install mockgen
run: go install go.uber.org/mock/[email protected]
- name: Install controller-gen
run: go install sigs.k8s.io/controller-tools/cmd/controller-gen@v0.15.0
run: go install sigs.k8s.io/controller-tools/cmd/controller-gen@v0.16.0
- name: Install helm
uses: azure/setup-helm@v4
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish-docs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ jobs:
- name: Install controller-gen
run: |
cd radius
go install sigs.k8s.io/controller-tools/cmd/controller-gen@v0.15.0
go install sigs.k8s.io/controller-tools/cmd/controller-gen@v0.16.0
# Generate Bicep docs
- name: Generate Bicep docs
run: |
Expand Down
2 changes: 1 addition & 1 deletion bicep-types
4 changes: 2 additions & 2 deletions build/generate.mk
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ generate: generate-genericcliclient generate-rad-corerp-client generate-rad-data
.PHONY: generate-tsp-installed
generate-tsp-installed:
@echo "$(ARROW) Detecting tsp..."
cd typespec/ && npx$(CMD_EXT) -q tsp --help > /dev/null || { echo "run 'npm ci' in typespec directory."; exit 1; }
cd typespec/ && npx$(CMD_EXT) -q -y tsp --help > /dev/null || { echo "run 'npm ci' in typespec directory."; exit 1; }
@echo "$(ARROW) OK"

.PHONY: generate-openapi-spec
Expand All @@ -56,7 +56,7 @@ generate-autorest-installed:
.PHONY: generate-controller-gen-installed
generate-controller-gen-installed:
@echo "$(ARROW) Detecting controller-gen..."
@which controller-gen > /dev/null || { echo "run 'go install sigs.k8s.io/controller-tools/cmd/controller-gen@v0.15.0'"; exit 1; }
@which controller-gen > /dev/null || { echo "run 'go install sigs.k8s.io/controller-tools/cmd/controller-gen@v0.16.0'"; exit 1; }
@echo "$(ARROW) OK"

.PHONY: generate-ucp-crd
Expand Down
5 changes: 3 additions & 2 deletions deploy/Chart/crds/radius/radapp.io_recipes.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ apiVersion: apiextensions.k8s.io/v1
kind: CustomResourceDefinition
metadata:
annotations:
controller-gen.kubebuilder.io/version: v0.15.0
controller-gen.kubebuilder.io/version: v0.16.0
name: recipes.radapp.io
spec:
group: radapp.io
Expand Down Expand Up @@ -72,6 +72,8 @@ spec:
type:
description: 'Type is the type of resource to create. eg: ''Applications.Datastores/redisCaches''.'
type: string
required:
- type
type: object
status:
description: RecipeStatus defines the observed state of Recipe
Expand Down Expand Up @@ -126,7 +128,6 @@ spec:
the event) or if no container name is specified "spec.containers[2]" (container with
index 2 in this pod). This syntax is chosen only to have some well-defined way of
referencing a part of an object.
TODO: this design is not final and this field is subject to change in the future.
type: string
kind:
description: |-
Expand Down
2 changes: 1 addition & 1 deletion deploy/Chart/crds/ucpd/ucp.dev_queuemessages.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ apiVersion: apiextensions.k8s.io/v1
kind: CustomResourceDefinition
metadata:
annotations:
controller-gen.kubebuilder.io/version: v0.15.0
controller-gen.kubebuilder.io/version: v0.16.0
name: queuemessages.ucp.dev
spec:
group: ucp.dev
Expand Down
2 changes: 1 addition & 1 deletion deploy/Chart/crds/ucpd/ucp.dev_resources.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ apiVersion: apiextensions.k8s.io/v1
kind: CustomResourceDefinition
metadata:
annotations:
controller-gen.kubebuilder.io/version: v0.15.0
controller-gen.kubebuilder.io/version: v0.16.0
name: resources.ucp.dev
spec:
group: ucp.dev
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -182,6 +182,6 @@ Enter the following commands to install all of the required tools.
cd typespec && npm ci
npm install -g autorest
npm install -g oav
go install sigs.k8s.io/controller-tools/cmd/controller-gen@v0.15.0
go install sigs.k8s.io/controller-tools/cmd/controller-gen@v0.16.0
go install go.uber.org/mock/[email protected]
```
69 changes: 69 additions & 0 deletions docs/release-notes/v0.39.0.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,69 @@
# Announcing Radius v0.39.0

Today we're happy to announce the release of Radius v0.39.0. Check out the [highlights](#highlights) below, along with the [full changelog](#full-changelog) for more details.

We would like to extend our thanks to all the [new](#new-contributors) and existing contributors who helped make this release possible!

## Intro to Radius

If you're new to Radius, check out our website, [radapp.io](https://radapp.io), for more information. Also visit our [getting started guide](https://docs.radapp.io/getting-started/) to learn how to install Radius and create your first app.

## Highlights

### Support for Dapr Configuration Building Block
A new `Applications.Dapr/configurationStores` resource type is now available to define and deploy the [Dapr Configuration](https://docs.dapr.io/getting-started/quickstarts/configuration-quickstart/) building block in Radius. The Dapr Configuration building block allows for dynamic configuration updates, including feature flag management, and is a great addition to the Dapr integration in Radius. To learn more, go to the [Dapr Configuration Store resource schema](https://docs.radapp.io/reference/resource-schema/dapr-schema/configurationstore/) in the Radius documentation. Thanks to community contributor @SoTrx for adding this functionality.

### In-memory data store for testing and development
Radius has added an implementation for an in-memory version of the data store interface, which may be used for testing and development purposes, when contributing to Radius. This helps to speed up and simplify the existing ETC.d and mocking mechanisms that are frequently used today in tests.

## Breaking changes
None.

## Upgrading to Radius v0.39.0

During our preview stage, an upgrade to Radius v0.39.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:

```bash
rad env delete <env-name>
```

2. Uninstall the previous version of the Radius control-plane:

```bash
rad uninstall kubernetes
```

3. Visit the [Radius installation guide](https://docs.radapp.io/getting-started/install/) to install the latest CLI, or download a binary below

4. Install the latest version of the Radius control-plane:

```bash
rad install kubernetes
```

## Full changelog

* Update version to 0.38 in versions.yaml by @ytimocin in https://github.com/radius-project/radius/pull/7924
* Bump bicep-types from `99cdcee` to `d936309` by @dependabot in https://github.com/radius-project/radius/pull/7929
* Implementation of Dapr Building Block: Configuration Store by @SoTrx in https://github.com/radius-project/radius/pull/7906
* Updating and reformatting the release doc by @ytimocin in https://github.com/radius-project/radius/pull/7933
* Update the timeout of the clean-up cluster step to 1h by @ytimocin in https://github.com/radius-project/radius/pull/7938
* Add dapr-sts* namespaces to be deleted to the clean-up workflow by @ytimocin in https://github.com/radius-project/radius/pull/7942
* Update golangci-lint version and fix new warnings by @ytimocin in https://github.com/radius-project/radius/pull/7951
* Improve validation and simplify database tests by @rynowak in https://github.com/radius-project/radius/pull/7949
* Separating purge old images and purge Azure test resources workflows by @ytimocin in https://github.com/radius-project/radius/pull/7937
* Bump peter-evans/create-pull-request from 6 to 7 in the all group by @dependabot in https://github.com/radius-project/radius/pull/7904
* Bump bicep-types from `d936309` to `ebba845` by @dependabot in https://github.com/radius-project/radius/pull/7957
* Add an in-memory data store by @rynowak in https://github.com/radius-project/radius/pull/7950
* Removing bicep workaround + minor cleanup by @sk593 in https://github.com/radius-project/radius/pull/7965
* Update the bicep extension used in the dev container by @brooke-hamilton in https://github.com/radius-project/radius/pull/7969
* Implement PostgreSQL datastore by @rynowak in https://github.com/radius-project/radius/pull/7961
* Add a PR Checklist for Contributions by @kachawla in https://github.com/radius-project/radius/pull/7921
* Bump bicep-types from `ebba845` to `96b34cb` by @dependabot in https://github.com/radius-project/radius/pull/7971
* Fix compiler and test failures with latest version of sigs.k8s.io/controller-runtime by @brooke-hamilton in https://github.com/radius-project/radius/pull/7979
* Bump the all group across 1 directory with 38 updates by @kachawla in https://github.com/radius-project/radius/pull/7981
* Implementation of resource providers and resource types registration by @rynowak in https://github.com/radius-project/radius/pull/7967
* Release 0.39: Create RC release by @kachawla in https://github.com/radius-project/radius/pull/7983
* Skipping one of the text prompt tests by @ytimocin in https://github.com/radius-project/radius/pull/7985
Loading

0 comments on commit 489772a

Please sign in to comment.