File tree Expand file tree Collapse file tree
chart/open-feature-operator Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11{
2- "." : " 0.9.0 " ,
2+ "." : " 0.9.1 " ,
33 "api" : " 0.2.48"
44}
Original file line number Diff line number Diff line change 11# Changelog
22
3+ ## [ 0.9.1] ( https://github.com/open-feature/open-feature-operator/compare/v0.9.0...v0.9.1 ) (2026-05-01)
4+
5+
6+ ⚠️ Drops support for Kubernetes < 1.29
7+
8+ ### ✨ New Features
9+
10+ * 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 ) )
11+ * 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 ) )
12+ * sidecar init stability, drop k8s < ; 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 ) )
13+
14+
15+ ### 🧹 Chore
16+
17+ * 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 ) )
18+
319## [ 0.9.0] ( https://github.com/open-feature/open-feature-operator/compare/v0.8.9...v0.9.0 ) (2026-04-17)
420
521
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ ARCH?=amd64
66IMG? =$(RELEASE_REGISTRY ) /$(RELEASE_IMAGE )
77# customize overlay to be used in the build, DEFAULT or HELM
88KUSTOMIZE_OVERLAY ?= DEFAULT
9- CHART_VERSION =v0.9.0 # x-release-please-version
9+ CHART_VERSION =v0.9.1 # x-release-please-version
1010# ENVTEST_K8S_VERSION refers to the version of kubebuilder assets to be downloaded by envtest binary.
1111ENVTEST_K8S_VERSION = 1.26.1
1212WAIT_TIMEOUT_SECONDS? =60
Original file line number Diff line number Diff line change @@ -13,12 +13,13 @@ type: application
1313# This is the chart version. This version number should be incremented each time you make changes
1414# to the chart and its templates, including the app version.
1515# Versions are expected to follow Semantic Versioning (https://semver.org/)
16- version : " v0.9.0" # x-release-please-version
16+ version : " v0.9.1" # x-release-please-version
17+ kubeVersion : " >=1.29.0"
1718# This is the version number of the application being deployed. This version number should be
1819# incremented each time you make changes to the application. Versions are not expected to
1920# follow Semantic Versioning. They should reflect the version the application is using.
2021# It is recommended to use it with quotes.
21- appVersion : " v0.9.0 " # x-release-please-version
22+ appVersion : " v0.9.1 " # x-release-please-version
2223
2324home : https://openfeature.dev
2425icon : https://open-feature.github.io/open-feature-operator/chart/open-feature-operator/openfeature-logo.png
Original file line number Diff line number Diff line change @@ -179,7 +179,7 @@ The command removes all the Kubernetes components associated with the chart and
179179| Name | Description | Value |
180180| ------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------- | -------------------------------------------- |
181181| ` controllerManager.manager.image.repository ` | Sets the image for the operator. | ` ghcr.io/open-feature/open-feature-operator ` |
182- | ` controllerManager.manager.image.tag ` | Sets the version tag for the operator. | ` v0.9.0 ` |
182+ | ` controllerManager.manager.image.tag ` | Sets the version tag for the operator. | ` v0.9.1 ` |
183183| ` controllerManager.manager.resources.limits.cpu ` | Sets cpu resource limits for operator. | ` 500m ` |
184184| ` controllerManager.manager.resources.limits.memory ` | Sets memory resource limits for operator. | ` 128Mi ` |
185185| ` controllerManager.manager.resources.requests.cpu ` | Sets cpu resource requests for operator. | ` 10m ` |
Original file line number Diff line number Diff line change @@ -129,7 +129,7 @@ controllerManager:
129129 # # @param controllerManager.manager.image.repository Sets the image for the operator.
130130 repository : ghcr.io/open-feature/open-feature-operator
131131 # # @param controllerManager.manager.image.tag Sets the version tag for the operator.
132- tag : v0.9.0 # x-release-please-version
132+ tag : v0.9.1 # x-release-please-version
133133 resources :
134134 limits :
135135 # # @param controllerManager.manager.resources.limits.cpu Sets cpu resource limits for operator.
Original file line number Diff line number Diff line change @@ -62,13 +62,13 @@ Apply the release yaml directly via kubectl
6262<!-- x-release-please-start-version -->
6363``` sh
6464kubectl create namespace open-feature-operator-system &&
65- kubectl apply -f https://github.com/open-feature/open-feature-operator/releases/download/v0.9.0 /release.yaml
65+ kubectl apply -f https://github.com/open-feature/open-feature-operator/releases/download/v0.9.1 /release.yaml
6666```
6767<!-- x-release-please-end -->
6868### Uninstall
6969<!-- x-release-please-start-version -->
7070``` sh
71- kubectl delete -f https://github.com/open-feature/open-feature-operator/releases/download/v0.9.0 /release.yaml &&
71+ kubectl delete -f https://github.com/open-feature/open-feature-operator/releases/download/v0.9.1 /release.yaml &&
7272kubectl delete namespace open-feature-operator-system
7373```
7474<!-- x-release-please-end -->
Original file line number Diff line number Diff line change @@ -40,7 +40,7 @@ helm upgrade --install openfeature openfeature/open-feature-operator
4040<!-- x-release-please-start-version -->
4141``` sh
4242kubectl create namespace open-feature-operator-system &&
43- kubectl apply -f https://github.com/open-feature/open-feature-operator/releases/download/v0.9.0 /release.yaml
43+ kubectl apply -f https://github.com/open-feature/open-feature-operator/releases/download/v0.9.1 /release.yaml
4444```
4545<!-- x-release-please-end -->
4646
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ require (
99 github.com/golang/mock v1.6.0
1010 github.com/kelseyhightower/envconfig v1.4.0
1111 github.com/open-feature/flagd-schemas v0.2.9-0.20250529171004-2852d7772e6b
12- github.com/open-feature/open-feature-operator/api v0.2.47
12+ github.com/open-feature/open-feature-operator/api v0.2.48
1313 github.com/stretchr/testify v1.11.1
1414 github.com/xeipuuv/gojsonschema v1.2.0
1515 go.uber.org/zap v1.27.0
Original file line number Diff line number Diff line change @@ -101,8 +101,8 @@ github.com/onsi/gomega v1.35.1 h1:Cwbd75ZBPxFSuZ6T+rN/WCb/gOc6YgFBXLlZLhC7Ds4=
101101github.com/onsi/gomega v1.35.1 /go.mod h1:PvZbdDc8J6XJEpDK4HCuRBm8a6Fzp9/DmhC9C7yFlog =
102102github.com/open-feature/flagd-schemas v0.2.9-0.20250529171004-2852d7772e6b h1:BThJr+zA4uku7BGDkzjwf7eMQZDEdnpXricDphI5y94 =
103103github.com/open-feature/flagd-schemas v0.2.9-0.20250529171004-2852d7772e6b /go.mod h1:WKtwo1eW9/K6D+4HfgTXWBqCDzpvMhDa5eRxW7R5B2U =
104- github.com/open-feature/open-feature-operator/api v0.2.47 h1:Q8g3Ks63J+AreouX0pn+YMLfoWuQoWfmBb28VCPCxAE =
105- github.com/open-feature/open-feature-operator/api v0.2.47 /go.mod h1:Y3jZiRdhJu7V96VH8jXuV19yHE/02468NWWtX/ehmf0 =
104+ github.com/open-feature/open-feature-operator/api v0.2.48 h1:yfG4rXBw3rn2cSoaCI3XMgNRQPl+qotPskrfzHVvT+M =
105+ github.com/open-feature/open-feature-operator/api v0.2.48 /go.mod h1:Y3jZiRdhJu7V96VH8jXuV19yHE/02468NWWtX/ehmf0 =
106106github.com/pkg/errors v0.9.1 h1:FEBLx1zS214owpjy7qsBeixbURkuhQAwrK5UwLGTwt4 =
107107github.com/pkg/errors v0.9.1 /go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0 =
108108github.com/pmezard/go-difflib v1.0.0 /go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4 =
You can’t perform that action at this time.
0 commit comments