[bitnami/valkey] feat: use new helper for checking API versions (#32064)

This commit is contained in:
Juan Ariza Toledano
2025-02-20 11:17:45 +00:00
committed by GitHub
parent 6fb67a63dc
commit b780cc181c
6 changed files with 24 additions and 16 deletions
+6 -2
View File
@@ -1,8 +1,12 @@
# Changelog
## 2.2.5 (2025-02-20)
## 2.3.0 (2025-02-20)
* [bitnami/valkey] Release 2.2.5 ([#32067](https://github.com/bitnami/charts/pull/32067))
* [bitnami/valkey] feat: use new helper for checking API versions ([#32064](https://github.com/bitnami/charts/pull/32064))
## <small>2.2.5 (2025-02-20)</small>
* [bitnami/valkey] Release 2.2.5 (#32067) ([a410e1e](https://github.com/bitnami/charts/commit/a410e1e40380759aa5721748ca9ba7c276df5c8a)), closes [#32067](https://github.com/bitnami/charts/issues/32067)
## <small>2.2.4 (2025-02-17)</small>
+12 -12
View File
@@ -18,22 +18,22 @@ annotations:
apiVersion: v2
appVersion: 8.0.2
dependencies:
- name: common
repository: oci://registry-1.docker.io/bitnamicharts
tags:
- bitnami-common
version: 2.x.x
- name: common
repository: oci://registry-1.docker.io/bitnamicharts
tags:
- bitnami-common
version: 2.x.x
description: Valkey is an open source (BSD) high-performance key/value datastore that supports a variety workloads such as caching, message queues, and can act as a primary database.
home: https://bitnami.com
icon: https://dyltqmyl993wv.cloudfront.net/assets/stacks/valkey/img/valkey-stack-220x234.png
keywords:
- valkey
- keyvalue
- database
- valkey
- keyvalue
- database
maintainers:
- name: Broadcom, Inc. All Rights Reserved.
url: https://github.com/bitnami/charts
- name: Broadcom, Inc. All Rights Reserved.
url: https://github.com/bitnami/charts
name: valkey
sources:
- https://github.com/bitnami/charts/tree/main/bitnami/valkey
version: 2.2.5
- https://github.com/bitnami/charts/tree/main/bitnami/valkey
version: 2.3.0
+1
View File
@@ -443,6 +443,7 @@ helm install my-release --set primary.persistence.existingClaim=PVC_NAME oci://R
| Name | Description | Value |
| ------------------------- | -------------------------------------------------------------------------------------------------------------- | --------------- |
| `kubeVersion` | Override Kubernetes version | `""` |
| `apiVersions` | Override Kubernetes API versions reported by .Capabilities | `[]` |
| `nameOverride` | String to partially override common.names.fullname | `""` |
| `fullnameOverride` | String to fully override common.names.fullname | `""` |
| `namespaceOverride` | String to fully override common.names.namespace | `""` |
+1 -1
View File
@@ -3,7 +3,7 @@ Copyright Broadcom, Inc. All Rights Reserved.
SPDX-License-Identifier: APACHE-2.0
*/}}
{{- if and (.Capabilities.APIVersions.Has "autoscaling.k8s.io/v1/VerticalPodAutoscaler") .Values.replica.autoscaling.vpa.enabled (not .Values.sentinel.enabled) }}
{{- if and (include "common.capabilities.apiVersions.has" ( dict "version" "autoscaling.k8s.io/v1/VerticalPodAutoscaler" "context" . )) .Values.replica.autoscaling.vpa.enabled (not .Values.sentinel.enabled) }}
apiVersion: autoscaling.k8s.io/v1
kind: VerticalPodAutoscaler
metadata:
+1 -1
View File
@@ -3,7 +3,7 @@ Copyright Broadcom, Inc. All Rights Reserved.
SPDX-License-Identifier: APACHE-2.0
*/}}
{{- if and (.Capabilities.APIVersions.Has "autoscaling.k8s.io/v1/VerticalPodAutoscaler") .Values.replica.autoscaling.vpa.enabled .Values.sentinel.enabled }}
{{- if and (include "common.capabilities.apiVersions.has" ( dict "version" "autoscaling.k8s.io/v1/VerticalPodAutoscaler" "context" . )) .Values.replica.autoscaling.vpa.enabled .Values.sentinel.enabled }}
apiVersion: autoscaling.k8s.io/v1
kind: VerticalPodAutoscaler
metadata:
+3
View File
@@ -44,6 +44,9 @@ global:
## @param kubeVersion Override Kubernetes version
##
kubeVersion: ""
## @param apiVersions Override Kubernetes API versions reported by .Capabilities
##
apiVersions: []
## @param nameOverride String to partially override common.names.fullname
##
nameOverride: ""