[bitnami/aspnet-core] chore: ♻️ ⬆️ Update common and remove k8s < 1.23 references (#33339)

This commit is contained in:
Javier J. Salmerón García
2025-05-06 17:41:52 +02:00
committed by GitHub
parent 6e265202ca
commit 9477aac5cb
6 changed files with 12 additions and 24 deletions

View File

@@ -1,8 +1,12 @@
# Changelog
## 7.0.1 (2025-04-30)
## 7.0.2 (2025-05-06)
* [bitnami/aspnet-core] Release 7.0.1 ([#33274](https://github.com/bitnami/charts/pull/33274))
* [bitnami/aspnet-core] chore: :recycle: :arrow_up: Update common and remove k8s < 1.23 references ([#33339](https://github.com/bitnami/charts/pull/33339))
## <small>7.0.1 (2025-04-30)</small>
* [bitnami/aspnet-core] Release 7.0.1 (#33274) ([c5b6ee8](https://github.com/bitnami/charts/commit/c5b6ee87419e3eee26eab38c37bd5bb84df36c98)), closes [#33274](https://github.com/bitnami/charts/issues/33274)
## 7.0.0 (2025-04-30)

View File

@@ -1,6 +1,6 @@
dependencies:
- name: common
repository: oci://registry-1.docker.io/bitnamicharts
version: 2.30.2
digest: sha256:85748f67a5f7d7b1d8e36608bb0aae580ed522f65e17def2ccc88a5285992445
generated: "2025-04-30T16:46:03.342010951Z"
version: 2.31.0
digest: sha256:c4c9af4e0ca23cf2c549e403b2a2bba2c53a3557cee23da09fa4cdf710044c2c
generated: "2025-05-06T09:53:52.124134669+02:00"

View File

@@ -32,4 +32,4 @@ maintainers:
name: aspnet-core
sources:
- https://github.com/bitnami/charts/tree/main/bitnami/aspnet-core
version: 7.0.1
version: 7.0.2

View File

@@ -19,7 +19,7 @@ metadata:
{{- include "common.tplvalues.render" ( dict "value" $annotations "context" $) | nindent 4 }}
{{- end }}
spec:
{{- if and .Values.healthIngress.ingressClassName (include "common.ingress.supportsIngressClassname" .) }}
{{- if .Values.healthIngress.ingressClassName }}
ingressClassName: {{ .Values.healthIngress.ingressClassName | quote }}
{{- end }}
rules:
@@ -31,9 +31,7 @@ spec:
{{- include "common.tplvalues.render" (dict "value" .Values.healthIngress.extraPaths "context" $) | nindent 10 }}
{{- end }}
- path: {{ .Values.healthIngress.path }}
{{- if eq "true" (include "common.ingress.supportsPathType" .) }}
pathType: {{ .Values.healthIngress.pathType }}
{{- end }}
backend: {{- include "common.ingress.backend" (dict "serviceName" (include "common.names.fullname" .) "servicePort" "http" "context" $) | nindent 14 }}
{{- end }}
{{- range .Values.healthIngress.extraHosts }}
@@ -44,9 +42,7 @@ spec:
{{- include "common.tplvalues.render" (dict "value" .Values.healthIngress.extraPaths "context" $) | nindent 10 }}
{{- end }}
- path: {{ .Values.healthIngress.path }}
{{- if eq "true" (include "common.ingress.supportsPathType" $) }}
pathType: {{ .Values.healthIngress.pathType }}
{{- end }}
backend: {{- include "common.ingress.backend" (dict "serviceName" (include "common.names.fullname" $) "servicePort" "http" "context" $) | nindent 14 }}
{{- end }}
{{- if .Values.healthIngress.extraRules }}

View File

@@ -25,24 +25,16 @@ spec:
- type: Resource
resource:
name: cpu
{{- if semverCompare "<1.23-0" (include "common.capabilities.kubeVersion" .) }}
targetAverageUtilization: {{ .Values.autoscaling.targetCPU }}
{{- else }}
target:
type: Utilization
averageUtilization: {{ .Values.autoscaling.targetCPU }}
{{- end }}
{{- end }}
{{- if .Values.autoscaling.targetMemory }}
- type: Resource
resource:
name: memory
{{- if semverCompare "<1.23-0" (include "common.capabilities.kubeVersion" .) }}
targetAverageUtilization: {{ .Values.autoscaling.targetMemory }}
{{- else }}
target:
type: Utilization
averageUtilization: {{ .Values.autoscaling.targetMemory }}
{{- end }}
{{- end }}
{{- end }}

View File

@@ -19,7 +19,7 @@ metadata:
{{- include "common.tplvalues.render" ( dict "value" $annotations "context" $) | nindent 4 }}
{{- end }}
spec:
{{- if and .Values.ingress.ingressClassName (include "common.ingress.supportsIngressClassname" .) }}
{{- if .Values.ingress.ingressClassName }}
ingressClassName: {{ .Values.ingress.ingressClassName | quote }}
{{- end }}
rules:
@@ -31,9 +31,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" "context" $) | nindent 14 }}
{{- end }}
{{- range .Values.ingress.extraHosts }}
@@ -41,9 +39,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" "context" $) | nindent 14 }}
{{- end }}
{{- if .Values.ingress.extraRules }}