diff --git a/divingbell/templates/secret-apt.yaml b/divingbell/templates/secret-apt.yaml index 14f0a6d..7c5d226 100644 --- a/divingbell/templates/secret-apt.yaml +++ b/divingbell/templates/secret-apt.yaml @@ -24,7 +24,6 @@ kind: Secret metadata: name: {{ $secretName }} data: - apt: |+ -{{ tuple "bin/_apt.sh.tpl" . | include "helm-toolkit.utils.template" | b64enc | indent 4 }} + apt: {{ tuple "bin/_apt.sh.tpl" . | include "helm-toolkit.utils.template" | b64enc }} {{- end }} {{- end }} diff --git a/divingbell/templates/secret-ethtool.yaml b/divingbell/templates/secret-ethtool.yaml index 63d7d2d..83926d5 100644 --- a/divingbell/templates/secret-ethtool.yaml +++ b/divingbell/templates/secret-ethtool.yaml @@ -24,7 +24,6 @@ kind: Secret metadata: name: {{ $secretName }} data: - ethtool: |+ -{{ tuple "bin/_ethtool.sh.tpl" . | include "helm-toolkit.utils.template" | b64enc | indent 4 }} + ethtool: {{ tuple "bin/_ethtool.sh.tpl" . | include "helm-toolkit.utils.template" | b64enc }} {{- end }} {{- end }} diff --git a/divingbell/templates/secret-limits.yaml b/divingbell/templates/secret-limits.yaml index 7d98e89..7488d79 100644 --- a/divingbell/templates/secret-limits.yaml +++ b/divingbell/templates/secret-limits.yaml @@ -24,7 +24,6 @@ kind: Secret metadata: name: {{ $secretName }} data: - limits: |+ -{{ tuple "bin/_limits.sh.tpl" . | include "helm-toolkit.utils.template" | b64enc | indent 4 }} + limits: {{ tuple "bin/_limits.sh.tpl" . | include "helm-toolkit.utils.template" | b64enc }} {{- end }} {{- end }} diff --git a/divingbell/templates/secret-mounts.yaml b/divingbell/templates/secret-mounts.yaml index fbcad72..ebc0b6b 100644 --- a/divingbell/templates/secret-mounts.yaml +++ b/divingbell/templates/secret-mounts.yaml @@ -24,7 +24,6 @@ kind: Secret metadata: name: {{ $secretName }} data: - mounts: |+ -{{ tuple "bin/_mounts.sh.tpl" . | include "helm-toolkit.utils.template" | b64enc | indent 4 }} + mounts: {{ tuple "bin/_mounts.sh.tpl" . | include "helm-toolkit.utils.template" | b64enc }} {{- end }} {{- end }} diff --git a/divingbell/templates/secret-sysctl.yaml b/divingbell/templates/secret-sysctl.yaml index f504739..3bbdfc5 100644 --- a/divingbell/templates/secret-sysctl.yaml +++ b/divingbell/templates/secret-sysctl.yaml @@ -24,7 +24,6 @@ kind: Secret metadata: name: {{ $secretName }} data: - sysctl: |+ -{{ tuple "bin/_sysctl.sh.tpl" . | include "helm-toolkit.utils.template" | b64enc | indent 4 }} + sysctl: {{ tuple "bin/_sysctl.sh.tpl" . | include "helm-toolkit.utils.template" | b64enc }} {{- end }} {{- end }} diff --git a/divingbell/templates/secret-uamlite.yaml b/divingbell/templates/secret-uamlite.yaml index 46c19a1..244437f 100644 --- a/divingbell/templates/secret-uamlite.yaml +++ b/divingbell/templates/secret-uamlite.yaml @@ -24,7 +24,6 @@ kind: Secret metadata: name: {{ $secretName }} data: - uamlite: |+ -{{ tuple "bin/_uamlite.sh.tpl" . | include "helm-toolkit.utils.template" | b64enc | indent 4 }} + uamlite: {{ tuple "bin/_uamlite.sh.tpl" . | include "helm-toolkit.utils.template" | b64enc }} {{- end }} {{- end }}