Skip to content

Commit 45fc605

Browse files
chore(main): release 0.2.6 (#586)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 9826bff commit 45fc605

File tree

5 files changed

+30
-5
lines changed

5 files changed

+30
-5
lines changed

.release-please-manifest.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{".":"0.2.5"}
1+
{".":"0.2.6"}

CHANGELOG.md

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

3+
## [0.2.6](https://github.com/k8sgpt-ai/k8sgpt-operator/compare/v0.2.5...v0.2.6) (2025-01-27)
4+
5+
6+
### Features
7+
8+
* Add Resource Configuration Options to K8sGPT CRD ([#591](https://github.com/k8sgpt-ai/k8sgpt-operator/issues/591)) ([8184876](https://github.com/k8sgpt-ai/k8sgpt-operator/commit/8184876f0a2f8cdd513adba0edad1a0444f5247a))
9+
* added functionality for emitting results into the k8sgpt-operator log ([#589](https://github.com/k8sgpt-ai/k8sgpt-operator/issues/589)) ([9826bff](https://github.com/k8sgpt-ai/k8sgpt-operator/commit/9826bff8664a3b6372d344a6d7da3fa98b840882))
10+
11+
12+
### Bug Fixes
13+
14+
* **deps:** update k8s.io/utils digest to 24370be ([#556](https://github.com/k8sgpt-ai/k8sgpt-operator/issues/556)) ([49a2b6e](https://github.com/k8sgpt-ai/k8sgpt-operator/commit/49a2b6e8e21e3e6c968082e302e4a3e467908a62))
15+
* **deps:** update module github.com/onsi/ginkgo/v2 to v2.22.1 ([#590](https://github.com/k8sgpt-ai/k8sgpt-operator/issues/590)) ([ce604d9](https://github.com/k8sgpt-ai/k8sgpt-operator/commit/ce604d9c0d4e09a7621f0a9177c775146d221d63))
16+
* **deps:** update module github.com/onsi/gomega to v1.36.2 ([#593](https://github.com/k8sgpt-ai/k8sgpt-operator/issues/593)) ([6db7ba8](https://github.com/k8sgpt-ai/k8sgpt-operator/commit/6db7ba87371b8cd6962eda1608676bf3bc23227d))
17+
* **deps:** update module gopkg.in/yaml.v2 to v3 ([#582](https://github.com/k8sgpt-ai/k8sgpt-operator/issues/582)) ([3c145ba](https://github.com/k8sgpt-ai/k8sgpt-operator/commit/3c145ba95317513c3905cee11387241e43571023))
18+
* **deps:** update module gopkg.in/yaml.v2 to v3 ([#596](https://github.com/k8sgpt-ai/k8sgpt-operator/issues/596)) ([a56af1b](https://github.com/k8sgpt-ai/k8sgpt-operator/commit/a56af1b92db35f9538b7112ee7e53711fec9368c))
19+
20+
21+
### Other
22+
23+
* **deps:** update anchore/sbom-action action to v0.17.9 ([#580](https://github.com/k8sgpt-ai/k8sgpt-operator/issues/580)) ([9e36a6e](https://github.com/k8sgpt-ai/k8sgpt-operator/commit/9e36a6e0f9ca3fd940c060128f639fc5ec17a23a))
24+
* **deps:** update docker/build-push-action digest to b32b51a ([#559](https://github.com/k8sgpt-ai/k8sgpt-operator/issues/559)) ([4172ea7](https://github.com/k8sgpt-ai/k8sgpt-operator/commit/4172ea7dfc55a5b755b34c47677a5eef7083d275))
25+
* **deps:** update docker/setup-buildx-action digest to 6524bf6 ([#583](https://github.com/k8sgpt-ai/k8sgpt-operator/issues/583)) ([d2b341b](https://github.com/k8sgpt-ai/k8sgpt-operator/commit/d2b341bbd1008e0de08847da68cc0858275ce8e2))
26+
* **deps:** update softprops/action-gh-release digest to e7a8f85 ([#554](https://github.com/k8sgpt-ai/k8sgpt-operator/issues/554)) ([0ad51d9](https://github.com/k8sgpt-ai/k8sgpt-operator/commit/0ad51d99e4ef6815118db1adef91bc8fe27cd7dd))
27+
328
## [0.2.5](https://github.com/k8sgpt-ai/k8sgpt-operator/compare/v0.2.4...v0.2.5) (2024-12-19)
429

530

chart/operator/Chart.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ annotations:
1414
artifacthub.io/license: Apache-2.0
1515
artifacthub.io/categories: monitoring-logging
1616
type: application
17-
version: 0.2.5
17+
version: 0.2.6
1818
appVersion: 0.0.26
1919
dependencies:
2020
- name: interplex

chart/operator/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ The following table lists the configurable parameters of the K8sgpt-operator cha
2222
| `controllerManager.kubeRbacProxy.containerSecurityContext.allowPrivilegeEscalation` | | `false` |
2323
| `controllerManager.kubeRbacProxy.containerSecurityContext.capabilities.drop` | | `["ALL"]` |
2424
| `controllerManager.kubeRbacProxy.image.repository` | | `"gcr.io/kubebuilder/kube-rbac-proxy"` |
25-
| `controllerManager.kubeRbacProxy.image.tag` | | `"v0.2.5"` |
25+
| `controllerManager.kubeRbacProxy.image.tag` | | `"v0.2.6"` |
2626
| `controllerManager.kubeRbacProxy.resources.limits.cpu` | | `"500m"` |
2727
| `controllerManager.kubeRbacProxy.resources.limits.memory` | | `"128Mi"` |
2828
| `controllerManager.kubeRbacProxy.resources.requests.cpu` | | `"5m"` |
@@ -31,7 +31,7 @@ The following table lists the configurable parameters of the K8sgpt-operator cha
3131
| `controllerManager.manager.containerSecurityContext.allowPrivilegeEscalation` | | `false` |
3232
| `controllerManager.manager.containerSecurityContext.capabilities.drop` | | `["ALL"]` |
3333
| `controllerManager.manager.image.repository` | | `"ghcr.io/k8sgpt-ai/k8sgpt-operator"` |
34-
| `controllerManager.manager.image.tag` | x-release-please-version | `"v0.2.5"` |
34+
| `controllerManager.manager.image.tag` | x-release-please-version | `"v0.2.6"` |
3535
| `controllerManager.manager.resources.limits.cpu` | | `"500m"` |
3636
| `controllerManager.manager.resources.limits.memory` | | `"128Mi"` |
3737
| `controllerManager.manager.resources.requests.cpu` | | `"10m"` |

chart/operator/values.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ controllerManager:
5454
- ALL
5555
image:
5656
repository: ghcr.io/k8sgpt-ai/k8sgpt-operator
57-
tag: v0.2.5 # x-release-please-version
57+
tag: v0.2.6 # x-release-please-version
5858
resources:
5959
limits:
6060
cpu: 500m

0 commit comments

Comments
 (0)