_notes.tpl 545 B

123456789101112131415161718192021
  1. {{- define "ix.v1.common.lib.chart.notes" -}}
  2. {{- include "ix.v1.common.lib.chart.header" . -}}
  3. {{- include "ix.v1.common.lib.chart.custom" . -}}
  4. {{- include "ix.v1.common.lib.chart.footer" . -}}
  5. {{- end -}}
  6. {{- define "ix.v1.common.lib.chart.header" -}}
  7. {{- tpl $.Values.notes.header $ | nindent 0 }}
  8. {{- end -}}
  9. {{- define "ix.v1.common.lib.chart.custom" -}}
  10. {{- tpl $.Values.notes.custom $ | nindent 0 }}
  11. {{- end -}}
  12. {{- define "ix.v1.common.lib.chart.footer" -}}
  13. {{- tpl $.Values.notes.footer $ | nindent 0 }}
  14. {{- end -}}