From d7b7dcb2a31f3f68ea5014323df590c388be5b84 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 14 Apr 2023 14:26:38 +0000 Subject: [PATCH] chore(main): release 0.2.35 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 12 ++++++++++++ Makefile | 2 +- chart/open-feature-operator/Chart.yaml | 4 ++-- chart/open-feature-operator/README.md | 2 +- chart/open-feature-operator/values.yaml | 2 +- docs/installation.md | 4 ++-- 7 files changed, 20 insertions(+), 8 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index af6baa749..5fc8e6cef 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.2.34" + ".": "0.2.35" } diff --git a/CHANGELOG.md b/CHANGELOG.md index f0f8e5e3d..c038d001f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,17 @@ # Changelog +## [0.2.35](https://github.com/open-feature/open-feature-operator/compare/v0.2.34...v0.2.35) (2023-04-14) + + +### ๐Ÿงน Chore + +* **deps:** update curlimages/curl docker tag to v7.88.1 ([#459](https://github.com/open-feature/open-feature-operator/issues/459)) ([ea98e1e](https://github.com/open-feature/open-feature-operator/commit/ea98e1e77ac616acc4aebf1ea042fc812486ece7)) + + +### ๐Ÿ“š Documentation + +* Doc fixes ([#469](https://github.com/open-feature/open-feature-operator/issues/469)) ([5a7918a](https://github.com/open-feature/open-feature-operator/commit/5a7918a94615621b6c6430e7ddec28c3d39a45e1)) + ## [0.2.34](https://github.com/open-feature/open-feature-operator/compare/v0.2.33...v0.2.34) (2023-04-13) diff --git a/Makefile b/Makefile index b01257e59..e8718bde7 100644 --- a/Makefile +++ b/Makefile @@ -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.2.34# x-release-please-version +CHART_VERSION=v0.2.35# 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 diff --git a/chart/open-feature-operator/Chart.yaml b/chart/open-feature-operator/Chart.yaml index 5a67ea51a..b169cdc53 100755 --- a/chart/open-feature-operator/Chart.yaml +++ b/chart/open-feature-operator/Chart.yaml @@ -13,12 +13,12 @@ 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.2.34" # x-release-please-version +version: "v0.2.35" # x-release-please-version # 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.2.34" # x-release-please-version +appVersion: "v0.2.35" # x-release-please-version home: https://openfeature.dev icon: https://open-feature.github.io/open-feature-operator/chart/open-feature-operator/openfeature-logo.png diff --git a/chart/open-feature-operator/README.md b/chart/open-feature-operator/README.md index 79b0ba48d..4a6ab5eca 100644 --- a/chart/open-feature-operator/README.md +++ b/chart/open-feature-operator/README.md @@ -114,7 +114,7 @@ The command removes all the Kubernetes components associated with the chart and | `controllerManager.kubeRbacProxy.resources.requests.cpu` | `5m` | | | `controllerManager.kubeRbacProxy.resources.requests.memory` | `64Mi` | | | `controllerManager.manager.image.repository` | `ghcr.io/open-feature/open-feature-operator` | | -| `controllerManager.manager.image.tag` | `v0.2.34` | | +| `controllerManager.manager.image.tag` | `v0.2.35` | | | `controllerManager.manager.resources.limits.cpu` | `500m` | | | `controllerManager.manager.resources.limits.memory` | `128Mi` | | | `controllerManager.manager.resources.requests.cpu` | `10m` | | diff --git a/chart/open-feature-operator/values.yaml b/chart/open-feature-operator/values.yaml index aba1e7672..0f1284bb4 100644 --- a/chart/open-feature-operator/values.yaml +++ b/chart/open-feature-operator/values.yaml @@ -40,7 +40,7 @@ controllerManager: manager: image: repository: ghcr.io/open-feature/open-feature-operator - tag: v0.2.34 # x-release-please-version + tag: v0.2.35 # x-release-please-version resources: limits: cpu: 500m diff --git a/docs/installation.md b/docs/installation.md index d1cb0d25a..2ccdc1edf 100644 --- a/docs/installation.md +++ b/docs/installation.md @@ -64,13 +64,13 @@ Apply the release yaml directly via kubectl ```sh kubectl create namespace open-feature-operator-system && -kubectl apply -f https://github.com/open-feature/open-feature-operator/releases/download/v0.2.34/release.yaml +kubectl apply -f https://github.com/open-feature/open-feature-operator/releases/download/v0.2.35/release.yaml ``` ### Uninstall ```sh -kubectl delete -f https://github.com/open-feature/open-feature-operator/releases/download/v0.2.34/release.yaml && +kubectl delete -f https://github.com/open-feature/open-feature-operator/releases/download/v0.2.35/release.yaml && kubectl delete namespace open-feature-operator-system ```