{{ define "chart.header" }}= {{ .Name }} {{ end }} {{ define "chart.versionBadge" }} image::https://img.shields.io/badge/Version-{{ .Version | replace "-" "--" }}-informational?style=flat-square[Version: {{ .Version }}]{{end}} {{ define "chart.typeBadge" }} image::https://img.shields.io/badge/Version-{{ .Type }}-informational?style=flat-square[Type: {{ .Type }}]{{end}} {{ define "chart.appVersionBadge" }}{{- if (ne .AppVersion "") }} image::https://img.shields.io/badge/AppVersion-{{ .AppVersion }}-informational?style=flat-square[AppVersion: {{ .AppVersion }}]{{ end }}{{end}} {{ define "chart.maintainersHeader" }}== Maintainers{{ end }} {{ define "chart.maintainersTable" }}.Maintainers |=== | Name | Email | Url {{- range .Maintainers }} | {{ .Name }} | {{ if .Email }}<{{ .Email }}>{{ end }} | {{ if .Url }}<{{ .Url }}>{{ end }} {{- end }} |=== {{ end }} {{ define "chart.valuesHeader" }}== Values{{ end }} {{ define "chart.valuesTable" -}} {{- if .Sections.Sections -}} {{- range .Sections.Sections }} .Values {{.SectionName }} {{ template "chart.valuesOneTable" .SectionItems }} {{- end }}{{/* range sections*/}} {{- if .Sections.DefaultSection.SectionItems -}} .Values {{.Sections.DefaultSection.SectionName }} {{ template "chart.valuesOneTable" .Sections.DefaultSection.SectionItems }} {{- end }}{{/* end default section */}} {{- else }}{{/* if no sections */}} .Values {{ template "chart.valuesOneTable" .Values }} {{- end }} {{ end }}{{/* end chart.valuesTable */}} {{ define "chart.valuesOneTable" -}} |=== | Key | Type | Default | Description {{- range . }} | {{ .Key }} | {{ .Type }} | {{ if .Default }}{{ .Default }}{{ else }}{{ .AutoDefault }}{{ end }} | {{ if .Description }}{{ .Description }}{{ else }}{{ .AutoDescription }}{{ end }} {{- end }} |=== {{ end }}{{/* end chart.valuesOneTable */}} {{ template "chart.header" . }} {{ template "chart.deprecationWarning" . }} {{ template "chart.badgesSection" . }} {{ template "chart.maintainersSection" . }} {{ template "chart.valuesSection" . }} Autogenerated from chart metadata using https://github.com/norwoodj/helm-docs[helm-docs]