mirror of
https://github.com/truecharts/library-charts.git
synced 2026-07-04 14:51:23 -03:00
**Description** <!-- Please include a summary of the change and which issue is fixed. Please also include relevant motivation and context. List any dependencies that are required for this change. --> ⚒️ Fixes # <!--(issue)--> **⚙️ Type of change** - [ ] ⚙️ Feature/App addition - [ ] 🪛 Bugfix - [ ] ⚠️ Breaking change (fix or feature that would cause existing functionality to not work as expected) - [ ] 🔃 Refactor of current code **🧪 How Has This Been Tested?** <!-- Please describe the tests that you ran to verify your changes. Provide instructions so we can reproduce. Please also list any relevant details for your test configuration --> **📃 Notes:** <!-- Please enter any other relevant information here --> **✔️ Checklist:** - [ ] ⚖️ My code follows the style guidelines of this project - [ ] 👀 I have performed a self-review of my own code - [ ] #️⃣ I have commented my code, particularly in hard-to-understand areas - [ ] 📄 I have made corresponding changes to the documentation - [ ] ⚠️ My changes generate no new warnings - [ ] 🧪 I have added tests to this description that prove my fix is effective or that my feature works - [ ] ⬆️ I increased versions for any altered app according to semantic versioning **➕ App addition** If this PR is an app addition please make sure you have done the following. - [ ] 🪞 I have opened a PR on [truecharts/containers](https://github.com/truecharts/containers) adding the container to TrueCharts mirror repo. - [ ] 🖼️ I have added an icon in the Chart's root directory called `icon.png` --- _Please don't blindly check all the boxes. Read them and only check those that apply. Those checkboxes are there for the reviewer to see what is this all about and the status of this PR with a quick glance._
150 lines
7.0 KiB
Smarty
150 lines
7.0 KiB
Smarty
{{/* Returns volumeMount list */}}
|
|
{{/* Call this template:
|
|
{{ include "tc.v1.common.lib.container.volumeMount" (dict "rootCtx" $ "objectData" $objectData) }}
|
|
rootCtx: The root context of the chart.
|
|
objectData: The object data to be used to render the container.
|
|
*/}}
|
|
{{- define "tc.v1.common.lib.container.volumeMount" -}}
|
|
{{- $rootCtx := .rootCtx -}}
|
|
{{- $objectData := .objectData -}}
|
|
|
|
{{- $volMounts := list -}}
|
|
|
|
{{- $codeServerIgnoredTypes := (list "configmap" "secret" "vct") -}}
|
|
|
|
{{- range $persistenceName, $persistenceValues := $rootCtx.Values.persistence -}}
|
|
{{- $enabled := (include "tc.v1.common.lib.util.enabled" (dict
|
|
"rootCtx" $rootCtx "objectData" $persistenceValues
|
|
"name" $persistenceName "caller" "Volume Mount"
|
|
"key" "persistence")) -}}
|
|
|
|
{{/* TLDR: Enabled + Not VCT without STS */}}
|
|
{{- if and (eq $enabled "true") (not (and (eq $persistenceValues.type "vct") (ne $objectData.podType "StatefulSet"))) -}}
|
|
{{/* Dont try to mount configmap/sercet/vct to codeserver */}}
|
|
{{- if not (and (eq $objectData.shortName "codeserver") (mustHas $persistenceValues.type $codeServerIgnoredTypes)) -}}
|
|
{{- $volMount := (fromJson (include "tc.v1.common.lib.container.volumeMount.isSelected" (dict "persistenceName" $persistenceName "persistenceValues" $persistenceValues "objectData" $objectData))) -}}
|
|
{{- if $volMount -}}
|
|
{{- $volMounts = mustAppend $volMounts $volMount -}}
|
|
{{- end -}}
|
|
{{- end -}}
|
|
{{- end -}}
|
|
{{- end -}}
|
|
|
|
{{- range $volMount := $volMounts -}}
|
|
{{/* Expand values */}}
|
|
{{- $_ := set $volMount "mountPath" (tpl $volMount.mountPath $rootCtx) -}}
|
|
{{- $_ := set $volMount "subPath" (tpl $volMount.subPath $rootCtx) -}}
|
|
{{- $_ := set $volMount "mountPropagation" (tpl $volMount.mountPropagation $rootCtx) -}}
|
|
|
|
{{- if not $volMount.mountPath -}}
|
|
{{- fail (printf "Persistence - Expected non-empty [mountPath]") -}}
|
|
{{- end -}}
|
|
|
|
{{- if not (hasPrefix "/" $volMount.mountPath) -}}
|
|
{{- fail (printf "Persistence - Expected [mountPath] to start with a forward slash [/]") -}}
|
|
{{- end -}}
|
|
|
|
{{- $propagationTypes := (list "None" "HostToContainer" "Bidirectional") -}}
|
|
{{- if and $volMount.mountPropagation (not (mustHas $volMount.mountPropagation $propagationTypes)) -}}
|
|
{{- fail (printf "Persistence - Expected [mountPropagation] to be one of [%s], but got [%s]" (join ", " $propagationTypes) $volMount.mountPropagation) -}}
|
|
{{- end -}}
|
|
|
|
{{- if not (kindIs "bool" $volMount.readOnly) -}}
|
|
{{- fail (printf "Persistence - Expected [readOnly] to be [boolean], but got [%s]" (kindOf $volMount.readOnly)) -}}
|
|
{{- end }}
|
|
- name: {{ $volMount.name }}
|
|
mountPath: {{ $volMount.mountPath }}
|
|
readOnly: {{ $volMount.readOnly }}
|
|
{{- with $volMount.subPath }}
|
|
subPath: {{ . }}
|
|
{{- end -}}
|
|
{{- with $volMount.mountPropagation }}
|
|
mountPropagation: {{ . }}
|
|
{{- end -}}
|
|
{{- end -}}
|
|
|
|
{{- end -}}
|
|
|
|
{{- define "tc.v1.common.lib.container.volumeMount.isSelected" -}}
|
|
{{- $persistenceName := .persistenceName -}}
|
|
{{- $persistenceValues := .persistenceValues -}}
|
|
{{- $objectData := .objectData -}}
|
|
|
|
{{/* Initialize from the default values */}}
|
|
{{- $volMount := dict -}}
|
|
{{- $_ := set $volMount "name" $persistenceName -}}
|
|
{{- if eq $persistenceValues.type "device" -}} {{/* On devices use the hostPath as default if mountpath is not defined */}}
|
|
{{- $_ := set $volMount "mountPath" ($persistenceValues.mountPath | default $persistenceValues.hostPath | default "") -}}
|
|
{{- else -}}
|
|
{{- $_ := set $volMount "mountPath" ($persistenceValues.mountPath | default "") -}}
|
|
{{- end -}}
|
|
{{- $_ := set $volMount "subPath" ($persistenceValues.subPath | default "") -}}
|
|
{{- $_ := set $volMount "readOnly" ($persistenceValues.readOnly | default false) -}}
|
|
{{- $_ := set $volMount "mountPropagation" ($persistenceValues.mountPropagation | default "") -}}
|
|
|
|
{{- $return := false -}}
|
|
{{/* If targetSelectAll is set, means all pods/containers */}} {{/* targetSelectAll does not make sense for vct */}}
|
|
{{- if and $persistenceValues.targetSelectAll (ne $persistenceValues.type "vct") -}}
|
|
{{- $return = true -}}
|
|
{{/* Set custom path on autopermissions container */}}
|
|
{{- if and (eq $objectData.shortName "autopermissions") $persistenceValues.autoPermissions -}}
|
|
{{- if $persistenceValues.autoPermissions.enabled -}}
|
|
{{- $return = true -}}
|
|
{{- $_ := set $volMount "mountPath" (printf "/mounts/%v" $persistenceName) -}}
|
|
{{- end -}}
|
|
{{- end -}}
|
|
|
|
{{/* If the container is the autopermission */}}
|
|
{{- else if (eq $objectData.shortName "autopermissions") -}}
|
|
{{- if $persistenceValues.autoPermissions -}}
|
|
{{- if $persistenceValues.autoPermissions.enabled -}}
|
|
{{- $return = true -}}
|
|
{{- $_ := set $volMount "mountPath" (printf "/mounts/%v" $persistenceName) -}}
|
|
{{- end -}}
|
|
{{- end -}}
|
|
|
|
{{/* Else if selector is defined */}}
|
|
{{- else if $persistenceValues.targetSelector -}}
|
|
{{- if not (kindIs "map" $persistenceValues.targetSelector) -}}
|
|
{{- fail (printf "Persistence - Expected [targetSelector] to be a [dict] but got [%s]" (kindOf $persistenceValues.targetSelector)) -}}
|
|
{{- end -}}
|
|
|
|
{{/* If pod is selected */}}
|
|
{{- if mustHas $objectData.podShortName ($persistenceValues.targetSelector | keys) -}}
|
|
{{- $selectorValues := (get $persistenceValues.targetSelector $objectData.podShortName) -}}
|
|
{{- if not (kindIs "map" $selectorValues) -}}
|
|
{{- fail (printf "Persistence - Expected [targetSelector.%s] to be a [dict], but got [%s]" $objectData.podShortName (kindOf $selectorValues)) -}}
|
|
{{- end -}}
|
|
|
|
{{- if not $selectorValues -}}
|
|
{{- fail (printf "Persistence - Expected non-empty [targetSelector.%s]" $objectData.podShortName) -}}
|
|
{{- end -}}
|
|
|
|
{{/* If container is selected */}}
|
|
{{- if or (mustHas $objectData.shortName ($selectorValues | keys)) (eq $objectData.shortName "codeserver") -}}
|
|
{{/* Merge with values that might be set for the specific container */}}
|
|
{{- $fetchedSelectorValues := (get $selectorValues $objectData.shortName) -}}
|
|
{{- if and (eq $objectData.shortName "codeserver") (not $fetchedSelectorValues) -}}
|
|
{{- $fetchedSelectorValues = (get $selectorValues ($selectorValues | keys | first)) -}}
|
|
{{- end -}}
|
|
{{- $volMount = mustMergeOverwrite $volMount $fetchedSelectorValues -}}
|
|
{{- $return = true -}}
|
|
{{- end -}}
|
|
{{- end -}}
|
|
|
|
{{/* if its the codeserver */}}
|
|
{{- else if (eq $objectData.shortName "codeserver") -}}
|
|
{{- $return = true -}}
|
|
|
|
{{/* Else if not selector, but pod and container is primary */}}
|
|
{{- else if and $objectData.podPrimary $objectData.primary -}}
|
|
{{- $return = true -}}
|
|
{{- end -}}
|
|
|
|
{{- if $return -}} {{/* If it's selected, return the volumeMount */}}
|
|
{{- $volMount | toJson -}}
|
|
{{- else -}} {{/* Else return an empty dict */}}
|
|
{{- dict | toJson -}}
|
|
{{- end -}}
|
|
{{- end -}}
|