* fix(common): add bitnami translation layer for images and labels * port bitnami storage and tpl handling * hmm * add affinity-handling, warnings and fix issues * bump feature * hmm * slight alterations * add some more tests * fix small mistake * fixing a minor bug
15 lines
487 B
Smarty
15 lines
487 B
Smarty
{{- define "common.setup" -}}
|
|
|
|
{{- /* Merge the local chart values and the common chart defaults */ -}}
|
|
{{- include "common.values" . }}
|
|
|
|
{{- /* Autogenerate postgresql passwords if needed */ -}}
|
|
{{- include "common.dependencies.postgresql.injector" . }}
|
|
|
|
{{- /* Autogenerate redis passwords if needed */ -}}
|
|
{{- include "common.dependencies.redis.injector" . }}
|
|
|
|
{{- /* Autogenerate mariadb passwords if needed */ -}}
|
|
{{- include "common.dependencies.mariadb.injector" . }}
|
|
{{- end -}}
|