- 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
18 lines
626 B
YAML
18 lines
626 B
YAML
{{- if .Values.miniflux.podDisruptionBudget.enabled -}}
|
|
apiVersion: policy/v1
|
|
kind: PodDisruptionBudget
|
|
metadata:
|
|
name: {{ include "miniflux.fullname" . }}
|
|
labels:
|
|
{{- include "miniflux.labels" . | nindent 4 }}
|
|
spec:
|
|
{{- if .Values.miniflux.podDisruptionBudget.minAvailable }}
|
|
minAvailable: {{ .Values.miniflux.podDisruptionBudget.minAvailable }}
|
|
{{- end }}
|
|
{{- if .Values.miniflux.podDisruptionBudget.maxUnavailable }}
|
|
maxUnavailable: {{ .Values.miniflux.podDisruptionBudget.maxUnavailable }}
|
|
{{- end }}
|
|
selector:
|
|
matchLabels:
|
|
{{- include "miniflux.selectorLabels" . | nindent 6 }}
|
|
{{- end }}
|