Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
".": "0.9.0",
".": "0.9.1",
"api": "0.2.48"
}
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,21 @@
# Changelog

## [0.9.1](https://github.com/open-feature/open-feature-operator/compare/v0.9.0...v0.9.1) (2026-05-01)


⚠️ Drops support for Kubernetes < 1.29

### ✨ New Features

* add support for S3 blob sync, fix GOOGLE env-var passthru ([#832](https://github.com/open-feature/open-feature-operator/issues/832)) ([097bc22](https://github.com/open-feature/open-feature-operator/commit/097bc22264a0a0d6724d6e7d2c75c50d37760907))
* add valueFrom field handling in envVars for FeatureFlagSource and InProcessConfiguration ([#802](https://github.com/open-feature/open-feature-operator/issues/802)) ([f9ca4d5](https://github.com/open-feature/open-feature-operator/commit/f9ca4d5153ae981716ebf76e305e110d1b2da084))
* sidecar init stability, drop k8s &lt; 1.29 support ([#807](https://github.com/open-feature/open-feature-operator/issues/807)) ([f57aa85](https://github.com/open-feature/open-feature-operator/commit/f57aa8540fe11dbb938d23aa6dcbc61ba388239d))
Comment thread
toddbaert marked this conversation as resolved.


### 🧹 Chore

* release api 0.2.48 ([#835](https://github.com/open-feature/open-feature-operator/issues/835)) ([9b4caee](https://github.com/open-feature/open-feature-operator/commit/9b4caee98e5bb3bc1191fa86770327def653f39f))

## [0.9.0](https://github.com/open-feature/open-feature-operator/compare/v0.8.9...v0.9.0) (2026-04-17)


Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ ARCH?=amd64
IMG?=$(RELEASE_REGISTRY)/$(RELEASE_IMAGE)
# customize overlay to be used in the build, DEFAULT or HELM
KUSTOMIZE_OVERLAY ?= DEFAULT
CHART_VERSION=v0.9.0# x-release-please-version
CHART_VERSION=v0.9.1# x-release-please-version
# ENVTEST_K8S_VERSION refers to the version of kubebuilder assets to be downloaded by envtest binary.
ENVTEST_K8S_VERSION = 1.26.1
WAIT_TIMEOUT_SECONDS?=60
Expand Down
5 changes: 3 additions & 2 deletions chart/open-feature-operator/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,13 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: "v0.9.0" # x-release-please-version
version: "v0.9.1" # x-release-please-version
Comment thread
toddbaert marked this conversation as resolved.
kubeVersion: ">=1.29.0"
# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
# follow Semantic Versioning. They should reflect the version the application is using.
# It is recommended to use it with quotes.
appVersion: "v0.9.0" # x-release-please-version
appVersion: "v0.9.1" # x-release-please-version

home: https://openfeature.dev
icon: https://open-feature.github.io/open-feature-operator/chart/open-feature-operator/openfeature-logo.png
Expand Down
2 changes: 1 addition & 1 deletion chart/open-feature-operator/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ The command removes all the Kubernetes components associated with the chart and
| Name | Description | Value |
| ------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------- | -------------------------------------------- |
| `controllerManager.manager.image.repository` | Sets the image for the operator. | `ghcr.io/open-feature/open-feature-operator` |
| `controllerManager.manager.image.tag` | Sets the version tag for the operator. | `v0.9.0` |
| `controllerManager.manager.image.tag` | Sets the version tag for the operator. | `v0.9.1` |
| `controllerManager.manager.resources.limits.cpu` | Sets cpu resource limits for operator. | `500m` |
| `controllerManager.manager.resources.limits.memory` | Sets memory resource limits for operator. | `128Mi` |
| `controllerManager.manager.resources.requests.cpu` | Sets cpu resource requests for operator. | `10m` |
Expand Down
2 changes: 1 addition & 1 deletion chart/open-feature-operator/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ controllerManager:
## @param controllerManager.manager.image.repository Sets the image for the operator.
repository: ghcr.io/open-feature/open-feature-operator
## @param controllerManager.manager.image.tag Sets the version tag for the operator.
tag: v0.9.0 # x-release-please-version
tag: v0.9.1 # x-release-please-version
resources:
limits:
## @param controllerManager.manager.resources.limits.cpu Sets cpu resource limits for operator.
Expand Down
4 changes: 2 additions & 2 deletions docs/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,13 +62,13 @@ Apply the release yaml directly via kubectl
<!-- x-release-please-start-version -->
```sh
kubectl create namespace open-feature-operator-system &&
kubectl apply -f https://github.com/open-feature/open-feature-operator/releases/download/v0.9.0/release.yaml
kubectl apply -f https://github.com/open-feature/open-feature-operator/releases/download/v0.9.1/release.yaml
```
<!-- x-release-please-end -->
### Uninstall
<!-- x-release-please-start-version -->
```sh
kubectl delete -f https://github.com/open-feature/open-feature-operator/releases/download/v0.9.0/release.yaml &&
kubectl delete -f https://github.com/open-feature/open-feature-operator/releases/download/v0.9.1/release.yaml &&
kubectl delete namespace open-feature-operator-system
```
<!-- x-release-please-end -->
Expand Down
2 changes: 1 addition & 1 deletion docs/quick_start.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ helm upgrade --install openfeature openfeature/open-feature-operator
<!-- x-release-please-start-version -->
```sh
kubectl create namespace open-feature-operator-system &&
kubectl apply -f https://github.com/open-feature/open-feature-operator/releases/download/v0.9.0/release.yaml
kubectl apply -f https://github.com/open-feature/open-feature-operator/releases/download/v0.9.1/release.yaml
```
<!-- x-release-please-end -->

Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ require (
github.com/golang/mock v1.6.0
github.com/kelseyhightower/envconfig v1.4.0
github.com/open-feature/flagd-schemas v0.2.9-0.20250529171004-2852d7772e6b
github.com/open-feature/open-feature-operator/api v0.2.47
github.com/open-feature/open-feature-operator/api v0.2.48
github.com/stretchr/testify v1.11.1
github.com/xeipuuv/gojsonschema v1.2.0
go.uber.org/zap v1.27.0
Expand Down
4 changes: 2 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -101,8 +101,8 @@ github.com/onsi/gomega v1.35.1 h1:Cwbd75ZBPxFSuZ6T+rN/WCb/gOc6YgFBXLlZLhC7Ds4=
github.com/onsi/gomega v1.35.1/go.mod h1:PvZbdDc8J6XJEpDK4HCuRBm8a6Fzp9/DmhC9C7yFlog=
github.com/open-feature/flagd-schemas v0.2.9-0.20250529171004-2852d7772e6b h1:BThJr+zA4uku7BGDkzjwf7eMQZDEdnpXricDphI5y94=
github.com/open-feature/flagd-schemas v0.2.9-0.20250529171004-2852d7772e6b/go.mod h1:WKtwo1eW9/K6D+4HfgTXWBqCDzpvMhDa5eRxW7R5B2U=
github.com/open-feature/open-feature-operator/api v0.2.47 h1:Q8g3Ks63J+AreouX0pn+YMLfoWuQoWfmBb28VCPCxAE=
github.com/open-feature/open-feature-operator/api v0.2.47/go.mod h1:Y3jZiRdhJu7V96VH8jXuV19yHE/02468NWWtX/ehmf0=
github.com/open-feature/open-feature-operator/api v0.2.48 h1:yfG4rXBw3rn2cSoaCI3XMgNRQPl+qotPskrfzHVvT+M=
github.com/open-feature/open-feature-operator/api v0.2.48/go.mod h1:Y3jZiRdhJu7V96VH8jXuV19yHE/02468NWWtX/ehmf0=
github.com/pkg/errors v0.9.1 h1:FEBLx1zS214owpjy7qsBeixbURkuhQAwrK5UwLGTwt4=
github.com/pkg/errors v0.9.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0=
github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4=
Expand Down
Loading