From 45e77ab8dbcb198f41be8d8ab9e0a4d25a7c65f3 Mon Sep 17 00:00:00 2001 From: Steve Hipwell Date: Wed, 17 Jan 2024 11:55:07 +0000 Subject: [PATCH] feat(overprovisioner): Updated cpa image to v1.8.9 (#867) Signed-off-by: Steve Hipwell --- charts/overprovisioner/CHANGELOG.md | 4 ++++ charts/overprovisioner/Chart.yaml | 10 +++++----- charts/overprovisioner/README.md | 4 ++-- charts/overprovisioner/values.yaml | 2 +- 4 files changed, 12 insertions(+), 8 deletions(-) diff --git a/charts/overprovisioner/CHANGELOG.md b/charts/overprovisioner/CHANGELOG.md index 6014f72a..1847f7f6 100644 --- a/charts/overprovisioner/CHANGELOG.md +++ b/charts/overprovisioner/CHANGELOG.md @@ -14,8 +14,11 @@ ## [UNRELEASED] +## [v0.3.0] - 2024-01-17 + ### Changed +- Updated the _cluster-proportional-autoscaler_ OCI image version to [v1.8.9](https://github.com/kubernetes-sigs/cluster-proportional-autoscaler/releases/tag/v1.8.9). - Changed the default `podSecurityContext` & `securityContext` values for all components. ## [v0.2.0] - 2023-03-09 @@ -44,6 +47,7 @@ RELEASE LINKS --> [UNRELEASED]: https://github.com/stevehipwell/helm-charts/tree/main/charts/overprovisioner +[v0.3.0]: https://github.com/stevehipwell/helm-charts/releases/tag/overprovisioner-0.3.0 [v0.2.0]: https://github.com/stevehipwell/helm-charts/releases/tag/overprovisioner-0.2.0 [v0.1.1]: https://github.com/stevehipwell/helm-charts/releases/tag/overprovisioner-0.1.1 [v0.1.0]: https://github.com/stevehipwell/helm-charts/releases/tag/overprovisioner-0.1.0 diff --git a/charts/overprovisioner/Chart.yaml b/charts/overprovisioner/Chart.yaml index c9666b0d..636f7a78 100644 --- a/charts/overprovisioner/Chart.yaml +++ b/charts/overprovisioner/Chart.yaml @@ -2,8 +2,8 @@ apiVersion: v2 name: overprovisioner description: Helm chart for overprovisioning Kubernetes clusters. type: application -version: 0.2.0 -appVersion: 0.2.0 +version: 0.3.0 +appVersion: 0.3.0 home: https://github.com/stevehipwell/helm-charts/ icon: https://upload.wikimedia.org/wikipedia/labs/thumb/b/ba/Kubernetes-icon-color.svg/2110px-Kubernetes-icon-color.svg.png keywords: @@ -19,7 +19,7 @@ maintainers: email: steve.hipwell@gmail.com annotations: artifacthub.io/changes: | - - kind: added - description: "Added support for automatic scaling using the cluster proportional autoscaler." - kind: changed - description: "Changed how the pause pod capacity works; use the new `capacity` values." + description: "Updated the _cluster-proportional-autoscaler_ OCI image version to [v1.8.9](https://github.com/kubernetes-sigs/cluster-proportional-autoscaler/releases/tag/v1.8.9)." + - kind: changed + description: "Changed the default `podSecurityContext` & `securityContext` values for all components.." diff --git a/charts/overprovisioner/README.md b/charts/overprovisioner/README.md index 9da2dfee..ae662a81 100644 --- a/charts/overprovisioner/README.md +++ b/charts/overprovisioner/README.md @@ -1,6 +1,6 @@ # overprovisioner -![Version: 0.2.0](https://img.shields.io/badge/Version-0.2.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 0.2.0](https://img.shields.io/badge/AppVersion-0.2.0-informational?style=flat-square) +![Version: 0.3.0](https://img.shields.io/badge/Version-0.3.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 0.3.0](https://img.shields.io/badge/AppVersion-0.3.0-informational?style=flat-square) Helm chart for overprovisioning Kubernetes clusters. @@ -23,7 +23,7 @@ Helm chart for overprovisioning Kubernetes clusters. | autoscaler.affinity | object | `{}` | Affinity settings for scheduling the _Autoscaler_ component. If an explicit label selector is not provided for pod affinity or pod anti-affinity one will be created from the pod selector labels. | | autoscaler.image.pullPolicy | string | `"IfNotPresent"` | Image pull policy for the _Autoscaler_ component default container. | | autoscaler.image.repository | string | `"registry.k8s.io/cpa/cluster-proportional-autoscaler"` | Image repository for the _Autoscaler_ component default container. | -| autoscaler.image.tag | string | `"1.8.6"` | Image tag for the _Autoscaler_ component default container. | +| autoscaler.image.tag | string | `"v1.8.9"` | Image tag for the _Autoscaler_ component default container. | | autoscaler.logLevel | int | `2` | Log level for the _Autoscaler_ component. | | autoscaler.nodeSelector | object | `{}` | Node selector labels for scheduling the _Autoscaler_ component. | | autoscaler.podAnnotations | object | `{}` | Annotations to add to the _Autoscaler_ pod. | diff --git a/charts/overprovisioner/values.yaml b/charts/overprovisioner/values.yaml index e7f8d01e..7b018ef1 100644 --- a/charts/overprovisioner/values.yaml +++ b/charts/overprovisioner/values.yaml @@ -122,7 +122,7 @@ autoscaler: # -- Image repository for the _Autoscaler_ component default container. repository: registry.k8s.io/cpa/cluster-proportional-autoscaler # -- Image tag for the _Autoscaler_ component default container. - tag: 1.8.6 + tag: v1.8.9 # -- Image pull policy for the _Autoscaler_ component default container. pullPolicy: IfNotPresent