Commit 838bdda 1 parent 8ae6ee8 commit 838bdda Copy full SHA for 838bdda
File tree 8 files changed +22
-9
lines changed
chart/open-feature-operator
8 files changed +22
-9
lines changed Original file line number Diff line number Diff line change 1
1
{
2
- "." : " 0.8.0 " ,
2
+ "." : " 0.8.1 " ,
3
3
"apis" : " 0.2.44"
4
4
}
Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
3
+ ## [ 0.8.1] ( https://github.com/open-feature/open-feature-operator/compare/v0.8.0...v0.8.1 ) (2024-10-30)
4
+
5
+
6
+ ### 🐛 Bug Fixes
7
+
8
+ * Add missing poddisruption budget permissions in manager cluster role ([ #718 ] ( https://github.com/open-feature/open-feature-operator/issues/718 ) ) ([ 69efcf0] ( https://github.com/open-feature/open-feature-operator/commit/69efcf021dfa4915bba9c943d0b8a8d137bfb2b2 ) )
9
+ * make flagd replica count configureable in helm chart ([ #716 ] ( https://github.com/open-feature/open-feature-operator/issues/716 ) ) ([ 8ae6ee8] ( https://github.com/open-feature/open-feature-operator/commit/8ae6ee81ac48589d01fd6e75f9c16bcd62c336b0 ) )
10
+
11
+
12
+ ### 🧹 Chore
13
+
14
+ * ** deps:** update docker/login-action digest to 0689575 ([ #714 ] ( https://github.com/open-feature/open-feature-operator/issues/714 ) ) ([ 20e4045] ( https://github.com/open-feature/open-feature-operator/commit/20e4045d1ad45a5047f4f81a544b96643528dda7 ) )
15
+
3
16
## [ 0.8.0] ( https://github.com/open-feature/open-feature-operator/compare/v0.7.2...v0.8.0 ) (2024-10-22)
4
17
5
18
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ ARCH?=amd64
6
6
IMG? =$(RELEASE_REGISTRY ) /$(RELEASE_IMAGE )
7
7
# customize overlay to be used in the build, DEFAULT or HELM
8
8
KUSTOMIZE_OVERLAY ?= DEFAULT
9
- CHART_VERSION =v0.8.0 # x-release-please-version
9
+ CHART_VERSION =v0.8.1 # x-release-please-version
10
10
# ENVTEST_K8S_VERSION refers to the version of kubebuilder assets to be downloaded by envtest binary.
11
11
ENVTEST_K8S_VERSION = 1.26.1
12
12
WAIT_TIMEOUT_SECONDS? =60
Original file line number Diff line number Diff line change @@ -13,12 +13,12 @@ type: application
13
13
# This is the chart version. This version number should be incremented each time you make changes
14
14
# to the chart and its templates, including the app version.
15
15
# Versions are expected to follow Semantic Versioning (https://semver.org/)
16
- version : " v0.8.0 " # x-release-please-version
16
+ version : " v0.8.1 " # x-release-please-version
17
17
# This is the version number of the application being deployed. This version number should be
18
18
# incremented each time you make changes to the application. Versions are not expected to
19
19
# follow Semantic Versioning. They should reflect the version the application is using.
20
20
# It is recommended to use it with quotes.
21
- appVersion : " v0.8.0 " # x-release-please-version
21
+ appVersion : " v0.8.1 " # x-release-please-version
22
22
23
23
home : https://openfeature.dev
24
24
icon : 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 @@ -178,7 +178,7 @@ The command removes all the Kubernetes components associated with the chart and
178
178
| ` controllerManager.kubeRbacProxy.resources.requests.cpu ` | Sets cpu resource requests for kube-rbac-proxy. | ` 5m ` |
179
179
| ` controllerManager.kubeRbacProxy.resources.requests.memory ` | Sets memory resource requests for kube-rbac-proxy. | ` 64Mi ` |
180
180
| ` controllerManager.manager.image.repository ` | Sets the image for the operator. | ` ghcr.io/open-feature/open-feature-operator ` |
181
- | ` controllerManager.manager.image.tag ` | Sets the version tag for the operator. | ` v0.8.0 ` |
181
+ | ` controllerManager.manager.image.tag ` | Sets the version tag for the operator. | ` v0.8.1 ` |
182
182
| ` controllerManager.manager.resources.limits.cpu ` | Sets cpu resource limits for operator. | ` 500m ` |
183
183
| ` controllerManager.manager.resources.limits.memory ` | Sets memory resource limits for operator. | ` 128Mi ` |
184
184
| ` controllerManager.manager.resources.requests.cpu ` | Sets cpu resource requests for operator. | ` 10m ` |
Original file line number Diff line number Diff line change @@ -140,7 +140,7 @@ controllerManager:
140
140
# # @param controllerManager.manager.image.repository Sets the image for the operator.
141
141
repository : ghcr.io/open-feature/open-feature-operator
142
142
# # @param controllerManager.manager.image.tag Sets the version tag for the operator.
143
- tag : v0.8.0 # x-release-please-version
143
+ tag : v0.8.1 # x-release-please-version
144
144
resources :
145
145
limits :
146
146
# # @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
62
62
<!-- x-release-please-start-version -->
63
63
``` sh
64
64
kubectl create namespace open-feature-operator-system &&
65
- kubectl apply -f https://github.com/open-feature/open-feature-operator/releases/download/v0.8.0 /release.yaml
65
+ kubectl apply -f https://github.com/open-feature/open-feature-operator/releases/download/v0.8.1 /release.yaml
66
66
```
67
67
<!-- x-release-please-end -->
68
68
### Uninstall
69
69
<!-- x-release-please-start-version -->
70
70
``` sh
71
- kubectl delete -f https://github.com/open-feature/open-feature-operator/releases/download/v0.8.0 /release.yaml &&
71
+ kubectl delete -f https://github.com/open-feature/open-feature-operator/releases/download/v0.8.1 /release.yaml &&
72
72
kubectl delete namespace open-feature-operator-system
73
73
```
74
74
<!-- 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
40
40
<!-- x-release-please-start-version -->
41
41
``` sh
42
42
kubectl create namespace open-feature-operator-system &&
43
- kubectl apply -f https://github.com/open-feature/open-feature-operator/releases/download/v0.8.0 /release.yaml
43
+ kubectl apply -f https://github.com/open-feature/open-feature-operator/releases/download/v0.8.1 /release.yaml
44
44
```
45
45
<!-- x-release-please-end -->
46
46
You can’t perform that action at this time.
0 commit comments