diff --git a/bitnami/nessie/CHANGELOG.md b/bitnami/nessie/CHANGELOG.md
index b4468cfbcb..f794a1556b 100644
--- a/bitnami/nessie/CHANGELOG.md
+++ b/bitnami/nessie/CHANGELOG.md
@@ -1,8 +1,12 @@
# Changelog
-## 2.0.7 (2025-05-01)
+## 2.0.8 (2025-05-06)
-* [bitnami/nessie] Release 2.0.7 ([#33279](https://github.com/bitnami/charts/pull/33279))
+* [bitnami/nessie] chore: :recycle: :arrow_up: Update common and remove k8s < 1.23 references ([#33412](https://github.com/bitnami/charts/pull/33412))
+
+## 2.0.7 (2025-05-01)
+
+* [bitnami/nessie] Release 2.0.7 (#33279) ([5299ff5](https://github.com/bitnami/charts/commit/5299ff516e7766cc97eb1a45d9df40dc414185ba)), closes [#33279](https://github.com/bitnami/charts/issues/33279)
## 2.0.6 (2025-04-26)
diff --git a/bitnami/nessie/Chart.lock b/bitnami/nessie/Chart.lock
index 6b4930f2e5..145bcc8e16 100644
--- a/bitnami/nessie/Chart.lock
+++ b/bitnami/nessie/Chart.lock
@@ -4,6 +4,6 @@ dependencies:
version: 16.6.6
- name: common
repository: oci://registry-1.docker.io/bitnamicharts
- version: 2.30.2
-digest: sha256:6d3a0d03aa61caccf74b405c157b30d095335e15a664c28b4623349efdd4efc5
-generated: "2025-05-01T11:38:21.925913863Z"
+ version: 2.31.0
+digest: sha256:1b5577724d7ca3aec34781d6c3e9f3cb866d81a7fc077746aa83a84b2bdd95c0
+generated: "2025-05-06T10:47:30.155429756+02:00"
diff --git a/bitnami/nessie/Chart.yaml b/bitnami/nessie/Chart.yaml
index 500fcb3732..70643014f8 100644
--- a/bitnami/nessie/Chart.yaml
+++ b/bitnami/nessie/Chart.yaml
@@ -39,4 +39,4 @@ sources:
- https://github.com/bitnami/charts/tree/main/bitnami/nessie
- https://github.com/bitnami/containers/tree/main/bitnami/nessie
- https://github.com/nessie/nessie
-version: 2.0.7
+version: 2.0.8
diff --git a/bitnami/nessie/templates/hpa.yaml b/bitnami/nessie/templates/hpa.yaml
index 446179429f..5396df4399 100644
--- a/bitnami/nessie/templates/hpa.yaml
+++ b/bitnami/nessie/templates/hpa.yaml
@@ -27,24 +27,16 @@ spec:
- type: Resource
resource:
name: memory
- {{- if semverCompare "<1.23-0" (include "common.capabilities.kubeVersion" .) }}
- targetAverageUtilization: {{ .Values.autoscaling.hpa.targetMemory }}
- {{- else }}
target:
type: Utilization
averageUtilization: {{ .Values.autoscaling.hpa.targetMemory }}
- {{- end }}
{{- end }}
{{- if .Values.autoscaling.hpa.targetCPU }}
- type: Resource
resource:
name: cpu
- {{- if semverCompare "<1.23-0" (include "common.capabilities.kubeVersion" .) }}
- targetAverageUtilization: {{ .Values.autoscaling.hpa.targetCPU }}
- {{- else }}
target:
type: Utilization
averageUtilization: {{ .Values.autoscaling.hpa.targetCPU }}
- {{- end }}
{{- end }}
{{- end }}
diff --git a/bitnami/nessie/templates/ingress.yaml b/bitnami/nessie/templates/ingress.yaml
index 5511972f68..040a64e751 100644
--- a/bitnami/nessie/templates/ingress.yaml
+++ b/bitnami/nessie/templates/ingress.yaml
@@ -17,7 +17,7 @@ metadata:
annotations: {{- include "common.tplvalues.render" ( dict "value" $annotations "context" $) | nindent 4 }}
{{- end }}
spec:
- {{- if and .Values.ingress.ingressClassName (eq "true" (include "common.ingress.supportsIngressClassname" .)) }}
+ {{- if .Values.ingress.ingressClassName }}
ingressClassName: {{ .Values.ingress.ingressClassName | quote }}
{{- end }}
rules:
@@ -29,9 +29,7 @@ spec:
{{- toYaml .Values.ingress.extraPaths | nindent 10 }}
{{- end }}
- path: {{ .Values.ingress.path }}
- {{- if eq "true" (include "common.ingress.supportsPathType" .) }}
pathType: {{ .Values.ingress.pathType }}
- {{- end }}
backend: {{- include "common.ingress.backend" (dict "serviceName" (include "common.names.fullname" .) "servicePort" "http-server" "context" $) | nindent 14 }}
{{- else if .Values.ingress.path }}
- http:
@@ -40,9 +38,7 @@ spec:
{{- toYaml .Values.ingress.extraPaths | nindent 10 }}
{{- end }}
- path: {{ .Values.ingress.path }}
- {{- if eq "true" (include "common.ingress.supportsPathType" .) }}
pathType: {{ .Values.ingress.pathType }}
- {{- end }}
backend: {{- include "common.ingress.backend" (dict "serviceName" (include "common.names.fullname" .) "servicePort" "http-server" "context" $) | nindent 14 }}
{{- end }}
{{- range .Values.ingress.extraHosts }}
@@ -50,9 +46,7 @@ spec:
http:
paths:
- path: {{ default "/" .path }}
- {{- if eq "true" (include "common.ingress.supportsPathType" $) }}
pathType: {{ default "ImplementationSpecific" .pathType }}
- {{- end }}
backend: {{- include "common.ingress.backend" (dict "serviceName" (include "common.names.fullname" $) "servicePort" "http-server" "context" $) | nindent 14 }}
{{- end }}
{{- if .Values.ingress.extraRules }}