Skip to content

Commit 256894f

Browse files
chore(main): release 0.2.27 (#322)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 2b10945 commit 256894f

File tree

7 files changed

+23
-10
lines changed

7 files changed

+23
-10
lines changed

.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "0.2.26"
2+
".": "0.2.27"
33
}

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,18 @@
11
# Changelog
22

3+
## [0.2.27](https://github.com/open-feature/open-feature-operator/compare/v0.2.26...v0.2.27) (2023-01-27)
4+
5+
6+
### Features
7+
8+
* default sync provider configuration ([#320](https://github.com/open-feature/open-feature-operator/issues/320)) ([7cba7e1](https://github.com/open-feature/open-feature-operator/commit/7cba7e14c223a083f02ff8313b899583253120f3))
9+
10+
11+
### Bug Fixes
12+
13+
* gave configmaps volume mounts a subpath to allow for multiple mounts ([#321](https://github.com/open-feature/open-feature-operator/issues/321)) ([2ec454c](https://github.com/open-feature/open-feature-operator/commit/2ec454c036149ebeaf34f81cbf4ad7895f0bb995))
14+
* uniqueness of featureflagconfiguration file path ([#323](https://github.com/open-feature/open-feature-operator/issues/323)) ([2b10945](https://github.com/open-feature/open-feature-operator/commit/2b109452893abd053640ffbb9c79b834b78feb7b))
15+
316
## [0.2.26](https://github.com/open-feature/open-feature-operator/compare/v0.2.25...v0.2.26) (2023-01-26)
417

518

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ IMG ?= controller:latest
55
KUSTOMIZE_OVERLAY ?= DEFAULT
66
# ENVTEST_K8S_VERSION refers to the version of kubebuilder assets to be downloaded by envtest binary.
77
FLAGD_VERSION=v0.3.2
8-
CHART_VERSION=v0.2.26# x-release-please-version
8+
CHART_VERSION=v0.2.27# x-release-please-version
99
ENVTEST_K8S_VERSION = 1.25
1010

1111
# Get the currently used golang install path (in GOPATH/bin, unless GOBIN is set)

chart/open-feature-operator/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ 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.2.26" # x-release-please-version
16+
version: "v0.2.27" # 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.2.26" # x-release-please-version
21+
appVersion: "v0.2.27" # x-release-please-version

chart/open-feature-operator/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -60,20 +60,20 @@ The command removes all the Kubernetes components associated with the chart and
6060
| ----------- | ----------- |
6161
| `defaultNamespace` | `open-feature-operator` | [INTERNAL USE ONLY] To override the namespace use the `--namespace` flag. This default is provided to ensure that the kustomize build charts in `/templates` deploy correctly when no `namespace` is provided via the `-n` flag.|
6262
| `controllerManager.kubeRbacProxy.image.repository` | `gcr.io/kubebuilder/kube-rbac-proxy` |
63-
| `controllerManager.kubeRbacProxy.image.tag` | `v0.2.26` |
63+
| `controllerManager.kubeRbacProxy.image.tag` | `v0.2.27` |
6464
| `controllerManager.kubeRbacProxy.resources.limits.cpu` | `500m` |
6565
| `controllerManager.kubeRbacProxy.resources.limits.memory` | `128Mi` |
6666
| `controllerManager.kubeRbacProxy.resources.requests.cpu` | `5m` |
6767
| `controllerManager.kubeRbacProxy.resources.requests.memory` | `64Mi` |
6868
| `controllerManager.manager.image.repository` | `ghcr.io/open-feature/open-feature-operator` |
69-
| `controllerManager.manager.image.tag` | `v0.2.26` |
69+
| `controllerManager.manager.image.tag` | `v0.2.27` |
7070
| `controllerManager.manager.resources.limits.cpu` | `500m` |
7171
| `controllerManager.manager.resources.limits.memory` | `128Mi` |
7272
| `controllerManager.manager.resources.requests.cpu` | `10m` |
7373
| `controllerManager.manager.resources.requests.memory` | `64Mi` |
7474
| `managerConfig.controllerManagerConfigYaml` | `1` |
7575
| `managerConfig.replicas.health.healthProbeBindAddress` | `:8081` |
76-
| `managerConfig.replicas.metrics.bindAddress` | `0.2.26.1:8080` |
76+
| `managerConfig.replicas.metrics.bindAddress` | `0.2.27.1:8080` |
7777
| `managerConfig.replicas.webhook.port` | `9443` |
7878
<!-- x-release-please-end -->
7979
## Changelog

chart/open-feature-operator/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ controllerManager:
2828
manager:
2929
image:
3030
repository: ghcr.io/open-feature/open-feature-operator
31-
tag: v0.2.26 # x-release-please-version
31+
tag: v0.2.27 # x-release-please-version
3232
resources:
3333
limits:
3434
cpu: 500m

docs/installation.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,13 +32,13 @@ Apply the release yaml directly via kubectl
3232
<!-- x-release-please-start-version -->
3333
```sh
3434
kubectl create namespace open-feature-operator-system
35-
kubectl apply -f https://github.com/open-feature/open-feature-operator/releases/download/v0.2.26/release.yaml
35+
kubectl apply -f https://github.com/open-feature/open-feature-operator/releases/download/v0.2.27/release.yaml
3636
```
3737
<!-- x-release-please-end -->
3838
### Uninstall
3939
<!-- x-release-please-start-version -->
4040
```sh
41-
kubectl delete -f https://github.com/open-feature/open-feature-operator/releases/download/v0.2.26/release.yaml
41+
kubectl delete -f https://github.com/open-feature/open-feature-operator/releases/download/v0.2.27/release.yaml
4242
kubectl delete namespace open-feature-operator-system
4343
```
4444
<!-- x-release-please-end -->

0 commit comments

Comments
 (0)