feat(helm): complete chart normalization with ConfigMap, HPA, and OCI migration

- Added debug mode, structured ConfigMap pattern, and README to all charts
- Migrated all flat-structure charts to hierarchical values under chartname key
- Fixed templates to use correct hierarchical paths
- Renamed helm-rustical key to rustical, added HPA support
- Fixed ingress YAML parsing (oxicloud), nested env vars (rustical)
- Pushed all normalized charts to OCI registry as 1.0.0+ and updated ArgoCD apps
This commit is contained in:
cătălin 2026-08-14 09:35:19 +02:00
commit 1fd2bfef3d
No known key found for this signature in database
71 changed files with 2150 additions and 965 deletions

View file

@ -1,21 +1,21 @@
{{- if .Values.ingress.enabled }}
{{- if .Values.chart.ingress.enabled }}
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: {{ include "fullname" . }}
labels:
{{- include "labels" . | nindent 4 }}
{{- with .Values.ingress.annotations }}
{{- with .Values.chart.ingress.annotations }}
annotations:
{{- toYaml . | nindent 4 }}
{{- end }}
spec:
{{- if .Values.ingress.className }}
ingressClassName: {{ .Values.ingress.className }}
{{- if .Values.chart.ingress.className }}
ingressClassName: {{ .Values.chart.ingress.className }}
{{- end }}
{{- if .Values.ingress.tls }}
{{- if .Values.chart.ingress.tls }}
tls:
{{- range .Values.ingress.tls }}
{{- range .Values.chart.ingress.tls }}
- hosts:
{{- range .hosts }}
- {{ . | quote }}
@ -24,7 +24,7 @@ spec:
{{- end }}
{{- end }}
rules:
{{- range .Values.ingress.hosts }}
{{- range .Values.chart.ingress.hosts }}
- host: {{ .host | quote }}
http:
paths:
@ -35,7 +35,7 @@ spec:
service:
name: {{ include "fullname" $ }}
port:
number: {{ $.Values.service.port }}
number: {{ $.Values.chart.service.port }}
{{- end }}
{{- end }}
{{- end }}