mirror of
https://github.com/bjw-s-labs/helm-charts.git
synced 2025-07-04 17:07:04 +02:00
- Removed: **BREAKING**: Removed support for HorizontalPodAutoscaler - Added: Support services have extraSelectorLabels (#58) - Added: support for `httpGet` probes - Added: support for setting labels / annotations on volumeClaimTemplates - Changed: **BREAKING**: Restructure of template components. All Helm templates have been renamed / namespaced. E.g. `common.values.setup` has now become `bjw-s.common.loader.init`. - Changed: **BREAKING**: Raised minimum supported k8s version to 1.22 - Changed: **BREAKING**: Renamed `configmap` key to `configMaps` - Changed: **BREAKING**: Moved `serviceMonitor` from `service` to its own key - Changed: **BREAKING**: Renamed `secret` key to `secrets`, which now works similar to `configMaps` - Changed: Updated code-server image to v4.8.2 - Changed: Updated gluetun image to v3.32.0 - Fixed: Fix NOTES always showing ingress protocol as http (#62) Signed-off-by: Gavin Mogan <git@gavinmogan.com> Co-authored-by: Gavin Mogan <github@gavinmogan.com> Co-authored-by: Gabe Cook <gabe565@gmail.com>
68 lines
2.5 KiB
Smarty
68 lines
2.5 KiB
Smarty
{{/*
|
|
Volumes included by the controller.
|
|
*/}}
|
|
{{- define "bjw-s.common.lib.controller.volumes" -}}
|
|
{{- range $index, $persistence := .Values.persistence }}
|
|
{{- if $persistence.enabled }}
|
|
- name: {{ $index }}
|
|
{{- if eq (default "pvc" $persistence.type) "pvc" }}
|
|
{{- $pvcName := (include "bjw-s.common.lib.chart.names.fullname" $) -}}
|
|
{{- if $persistence.existingClaim }}
|
|
{{- /* Always prefer an existingClaim if that is set */}}
|
|
{{- $pvcName = $persistence.existingClaim -}}
|
|
{{- else -}}
|
|
{{- /* Otherwise refer to the PVC name */}}
|
|
{{- if $persistence.nameOverride -}}
|
|
{{- if not (eq $persistence.nameOverride "-") -}}
|
|
{{- $pvcName = (printf "%s-%s" (include "bjw-s.common.lib.chart.names.fullname" $) $persistence.nameOverride) -}}
|
|
{{- end -}}
|
|
{{- else -}}
|
|
{{- $pvcName = (printf "%s-%s" (include "bjw-s.common.lib.chart.names.fullname" $) $index) -}}
|
|
{{- end -}}
|
|
{{- end }}
|
|
persistentVolumeClaim:
|
|
claimName: {{ $pvcName }}
|
|
{{- else if or (eq $persistence.type "configMap") (eq $persistence.type "secret") }}
|
|
{{- $objectName := (required (printf "name not set for persistence item %s" $index) $persistence.name) }}
|
|
{{- $objectName = tpl $objectName $ }}
|
|
{{- if eq $persistence.type "configMap" }}
|
|
configMap:
|
|
name: {{ $objectName }}
|
|
{{- else }}
|
|
secret:
|
|
secretName: {{ $objectName }}
|
|
{{- end }}
|
|
{{- with $persistence.defaultMode }}
|
|
defaultMode: {{ . }}
|
|
{{- end }}
|
|
{{- with $persistence.items }}
|
|
items:
|
|
{{- toYaml . | nindent 6 }}
|
|
{{- end }}
|
|
{{- else if eq $persistence.type "emptyDir" }}
|
|
{{- $emptyDir := dict -}}
|
|
{{- with $persistence.medium -}}
|
|
{{- $_ := set $emptyDir "medium" . -}}
|
|
{{- end -}}
|
|
{{- with $persistence.sizeLimit -}}
|
|
{{- $_ := set $emptyDir "sizeLimit" . -}}
|
|
{{- end }}
|
|
emptyDir: {{- $emptyDir | toYaml | nindent 4 }}
|
|
{{- else if eq $persistence.type "hostPath" }}
|
|
hostPath:
|
|
path: {{ required "hostPath not set" $persistence.hostPath }}
|
|
{{- with $persistence.hostPathType }}
|
|
type: {{ . }}
|
|
{{- end }}
|
|
{{- else if eq $persistence.type "nfs" }}
|
|
nfs:
|
|
server: {{ required "server not set" $persistence.server }}
|
|
path: {{ required "path not set" $persistence.path }}
|
|
{{- else if eq $persistence.type "custom" }}
|
|
{{- toYaml $persistence.volumeSpec | nindent 2 }}
|
|
{{- else }}
|
|
{{- fail (printf "Not a valid persistence.type (%s)" .Values.persistence.type) }}
|
|
{{- end }}
|
|
{{- end }}
|
|
{{- end }}
|
|
{{- end }}
|