You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In our case vector sends logs to clickhouse and init container is used for running liquibase migrations so we need to specify DB url/creds twice: in customConfig.sinks section and in init container env. If initContainers section was templated as customConfig, it would be simple to pass parameters using --set.
The change should be simple
{{- with .Values.initContainers }}
initContainers:
{{ tpl (toYaml .) $ | indent 2 }}
{{- end }}
in _pod.tpl
The text was updated successfully, but these errors were encountered:
In our case vector sends logs to clickhouse and init container is used for running liquibase migrations so we need to specify DB url/creds twice: in customConfig.sinks section and in init container env. If initContainers section was templated as customConfig, it would be simple to pass parameters using
--set
.The change should be simple
in
_pod.tpl
The text was updated successfully, but these errors were encountered: