diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 2f6e844e..292222a0 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1 +1 @@ -{".":"0.0.14"} \ No newline at end of file +{".":"0.0.15"} \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index ffe0c2f5..5e6626a9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,28 @@ # Changelog +## [0.0.15](https://github.com/k8sgpt-ai/k8sgpt-operator/compare/v0.0.14...v0.0.15) (2023-05-22) + + +### Features + +* add filters parameter to client API ([#96](https://github.com/k8sgpt-ai/k8sgpt-operator/issues/96)) ([6c41ac5](https://github.com/k8sgpt-ai/k8sgpt-operator/commit/6c41ac5f49bf32a62efbe68d44a719a6e72bc28b)) +* add grafana dashboard in helm chart ([#102](https://github.com/k8sgpt-ai/k8sgpt-operator/issues/102)) ([b98b2d2](https://github.com/k8sgpt-ai/k8sgpt-operator/commit/b98b2d20dd64daf038daf2250877c86f3a1ae1d4)) +* parameterise grafana's annotations and labels ([#111](https://github.com/k8sgpt-ai/k8sgpt-operator/issues/111)) ([6d8056e](https://github.com/k8sgpt-ai/k8sgpt-operator/commit/6d8056e12b1fe63a9361ec0dc4959a024f9ea243)) + + +### Bug Fixes + +* **deps:** update module buf.build/gen/go/k8sgpt-ai/k8sgpt/grpc/go to v1.3.0-20230515081240-6b5b845c638e.1 ([#77](https://github.com/k8sgpt-ai/k8sgpt-operator/issues/77)) ([62aa2cb](https://github.com/k8sgpt-ai/k8sgpt-operator/commit/62aa2cbf3f4b8994c0d5b18b56538ab9ae27d5ce)) +* **deps:** update module github.com/onsi/ginkgo/v2 to v2.9.5 ([#101](https://github.com/k8sgpt-ai/k8sgpt-operator/issues/101)) ([40b8377](https://github.com/k8sgpt-ai/k8sgpt-operator/commit/40b83777ad4eb49c3ebe50831ecefb789f52bca6)) +* **deps:** update module github.com/onsi/gomega to v1.27.7 ([#110](https://github.com/k8sgpt-ai/k8sgpt-operator/issues/110)) ([e8652be](https://github.com/k8sgpt-ai/k8sgpt-operator/commit/e8652be9fb2699fd386ac4a6cbc9a165056bf36e)) + + +### Other + +* **deps:** update actions/setup-go digest to fac708d ([#100](https://github.com/k8sgpt-ai/k8sgpt-operator/issues/100)) ([42af949](https://github.com/k8sgpt-ai/k8sgpt-operator/commit/42af9491e6ec076a800650cf0d32607ceee196b1)) +* **deps:** update helm/kind-action action to v1.7.0 ([#104](https://github.com/k8sgpt-ai/k8sgpt-operator/issues/104)) ([d1bc1ca](https://github.com/k8sgpt-ai/k8sgpt-operator/commit/d1bc1ca521ffce95979e15f4a749a669b3b85c62)) +* readme ([#107](https://github.com/k8sgpt-ai/k8sgpt-operator/issues/107)) ([c58f8b4](https://github.com/k8sgpt-ai/k8sgpt-operator/commit/c58f8b4d8661e64d4c08c8c22d96c50eb5c2bfc0)) + ## [0.0.14](https://github.com/k8sgpt-ai/k8sgpt-operator/compare/v0.0.13...v0.0.14) (2023-05-12) diff --git a/chart/operator/README.md b/chart/operator/README.md index 87828b13..ba34f0b7 100644 --- a/chart/operator/README.md +++ b/chart/operator/README.md @@ -17,7 +17,7 @@ The following table lists the configurable parameters of the K8sgpt-operator cha | `controllerManager.kubeRbacProxy.containerSecurityContext.allowPrivilegeEscalation` | | `false` | | `controllerManager.kubeRbacProxy.containerSecurityContext.capabilities.drop` | | `["ALL"]` | | `controllerManager.kubeRbacProxy.image.repository` | | `"gcr.io/kubebuilder/kube-rbac-proxy"` | -| `controllerManager.kubeRbacProxy.image.tag` | | `"v0.0.14"` | +| `controllerManager.kubeRbacProxy.image.tag` | | `"v0.0.15"` | | `controllerManager.kubeRbacProxy.resources.limits.cpu` | | `"500m"` | | `controllerManager.kubeRbacProxy.resources.limits.memory` | | `"128Mi"` | | `controllerManager.kubeRbacProxy.resources.requests.cpu` | | `"5m"` | @@ -25,7 +25,7 @@ The following table lists the configurable parameters of the K8sgpt-operator cha | `controllerManager.manager.containerSecurityContext.allowPrivilegeEscalation` | | `false` | | `controllerManager.manager.containerSecurityContext.capabilities.drop` | | `["ALL"]` | | `controllerManager.manager.image.repository` | | `"ghcr.io/k8sgpt-ai/k8sgpt-operator"` | -| `controllerManager.manager.image.tag` | | `"v0.0.14"` | +| `controllerManager.manager.image.tag` | | `"v0.0.15"` | | `controllerManager.manager.resources.limits.cpu` | | `"500m"` | | `controllerManager.manager.resources.limits.memory` | | `"128Mi"` | | `controllerManager.manager.resources.requests.cpu` | | `"10m"` | diff --git a/chart/operator/values.yaml b/chart/operator/values.yaml index d5b4da86..11487d5e 100644 --- a/chart/operator/values.yaml +++ b/chart/operator/values.yaml @@ -34,7 +34,7 @@ controllerManager: - ALL image: repository: ghcr.io/k8sgpt-ai/k8sgpt-operator - tag: v0.0.14 # x-release-please-version + tag: v0.0.15 # x-release-please-version resources: limits: cpu: 500m