Skip to content

Commit 0affaa5

Browse files
chore: release 0.5.3 (#581)
Signed-off-by: Todd Baert <todd.baert@dynatrace.com> Co-authored-by: Todd Baert <todd.baert@dynatrace.com>
1 parent a5dfbe1 commit 0affaa5

File tree

8 files changed

+26
-9
lines changed

8 files changed

+26
-9
lines changed

.release-please-manifest.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
2-
".": "0.5.2",
2+
".": "0.5.3",
33
"apis": "0.2.38"
44
}

CHANGELOG.md

+17
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,22 @@
11
# Changelog
22

3+
## [0.5.3](https://github.com/open-feature/open-feature-operator/compare/v0.5.2...v0.5.3) (2023-12-29)
4+
5+
6+
### 🐛 Bug Fixes
7+
8+
* create index for pod annotation path for allowkubernetessync annotation instead of deployment ([#582](https://github.com/open-feature/open-feature-operator/issues/582)) ([a6fa04f](https://github.com/open-feature/open-feature-operator/commit/a6fa04f590ad4ad6779ce85f4fc167b59f1b17a7))
9+
* flagd mgmt port setting ignored ([#588](https://github.com/open-feature/open-feature-operator/issues/588)) ([1444328](https://github.com/open-feature/open-feature-operator/commit/1444328691450ee3967d862eebf3a293b4f9fe7c))
10+
11+
12+
### 🧹 Chore
13+
14+
* add default timeout to make ([#593](https://github.com/open-feature/open-feature-operator/issues/593)) ([a5dfbe1](https://github.com/open-feature/open-feature-operator/commit/a5dfbe1aa24e17bd21fe4c5073e0cd40f11b6203))
15+
* **deps:** update dependency bitnami-labs/readme-generator-for-helm to v2.6.0 ([#525](https://github.com/open-feature/open-feature-operator/issues/525)) ([70fb5d9](https://github.com/open-feature/open-feature-operator/commit/70fb5d95497346dac9f83058105de4d828d75c96))
16+
* Remove metrics-port flag/usage from flagdproxy startup ([#587](https://github.com/open-feature/open-feature-operator/issues/587)) ([f79c46f](https://github.com/open-feature/open-feature-operator/commit/f79c46f36cfda1134c523e962925cfdfd0d2b0b3))
17+
* update `FeatureFlagSource` documentation for v1beta1 ([#584](https://github.com/open-feature/open-feature-operator/issues/584)) ([5a7b2c6](https://github.com/open-feature/open-feature-operator/commit/5a7b2c6be1d38fe344c98f0e7d816852e9eb744f))
18+
* update readme tag version ([#592](https://github.com/open-feature/open-feature-operator/issues/592)) ([f6a154d](https://github.com/open-feature/open-feature-operator/commit/f6a154d92a6ed0633761523b5cb43606604a48a1))
19+
320
## [0.5.2](https://github.com/open-feature/open-feature-operator/compare/v0.5.1...v0.5.2) (2023-12-06)
421

522

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ ARCH?=amd64
66
IMG?=$(RELEASE_REGISTRY)/$(RELEASE_IMAGE)
77
# customize overlay to be used in the build, DEFAULT or HELM
88
KUSTOMIZE_OVERLAY ?= DEFAULT
9-
CHART_VERSION=v0.5.2# x-release-please-version
9+
CHART_VERSION=v0.5.3# x-release-please-version
1010
# ENVTEST_K8S_VERSION refers to the version of kubebuilder assets to be downloaded by envtest binary.
1111
ENVTEST_K8S_VERSION = 1.26.1
1212
WAIT_TIMEOUT_SECONDS?=60

chart/open-feature-operator/Chart.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,12 @@ 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.5.2" # x-release-please-version
16+
version: "v0.5.3" # x-release-please-version
1717
# This is the version number of the application being deployed. This version number should be
1818
# incremented each time you make changes to the application. Versions are not expected to
1919
# follow Semantic Versioning. They should reflect the version the application is using.
2020
# It is recommended to use it with quotes.
21-
appVersion: "v0.5.2" # x-release-please-version
21+
appVersion: "v0.5.3" # x-release-please-version
2222

2323
home: https://openfeature.dev
2424
icon: https://open-feature.github.io/open-feature-operator/chart/open-feature-operator/openfeature-logo.png

chart/open-feature-operator/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ The command removes all the Kubernetes components associated with the chart and
130130
| `controllerManager.kubeRbacProxy.resources.requests.cpu` | Sets cpu resource requests for kube-rbac-proxy. | `5m` |
131131
| `controllerManager.kubeRbacProxy.resources.requests.memory` | Sets memory resource requests for kube-rbac-proxy. | `64Mi` |
132132
| `controllerManager.manager.image.repository` | Sets the image for the operator. | `ghcr.io/open-feature/open-feature-operator` |
133-
| `controllerManager.manager.image.tag` | Sets the version tag for the operator. | `v0.5.2` |
133+
| `controllerManager.manager.image.tag` | Sets the version tag for the operator. | `v0.5.3` |
134134
| `controllerManager.manager.resources.limits.cpu` | Sets cpu resource limits for operator. | `500m` |
135135
| `controllerManager.manager.resources.limits.memory` | Sets memory resource limits for operator. | `128Mi` |
136136
| `controllerManager.manager.resources.requests.cpu` | Sets cpu resource requests for operator. | `10m` |

chart/open-feature-operator/values.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ controllerManager:
7474
## @param controllerManager.manager.image.repository Sets the image for the operator.
7575
repository: ghcr.io/open-feature/open-feature-operator
7676
## @param controllerManager.manager.image.tag Sets the version tag for the operator.
77-
tag: v0.5.2 # x-release-please-version
77+
tag: v0.5.3 # x-release-please-version
7878
resources:
7979
limits:
8080
## @param controllerManager.manager.resources.limits.cpu Sets cpu resource limits for operator.

docs/installation.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -65,13 +65,13 @@ Apply the release yaml directly via kubectl
6565
<!-- x-release-please-start-version -->
6666
```sh
6767
kubectl create namespace open-feature-operator-system &&
68-
kubectl apply -f https://github.com/open-feature/open-feature-operator/releases/download/v0.5.2/release.yaml
68+
kubectl apply -f https://github.com/open-feature/open-feature-operator/releases/download/v0.5.3/release.yaml
6969
```
7070
<!-- x-release-please-end -->
7171
### Uninstall
7272
<!-- x-release-please-start-version -->
7373
```sh
74-
kubectl delete -f https://github.com/open-feature/open-feature-operator/releases/download/v0.5.2/release.yaml &&
74+
kubectl delete -f https://github.com/open-feature/open-feature-operator/releases/download/v0.5.3/release.yaml &&
7575
kubectl delete namespace open-feature-operator-system
7676
```
7777
<!-- x-release-please-end -->

docs/quick_start.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ helm upgrade --install openfeature openfeature/open-feature-operator
4040
<!-- x-release-please-start-version -->
4141
```sh
4242
kubectl create namespace open-feature-operator-system &&
43-
kubectl apply -f https://github.com/open-feature/open-feature-operator/releases/download/v0.5.2/release.yaml
43+
kubectl apply -f https://github.com/open-feature/open-feature-operator/releases/download/v0.5.3/release.yaml
4444
```
4545
<!-- x-release-please-end -->
4646

0 commit comments

Comments
 (0)