_templates.gotmpl 493 B

1234567891011121314
  1. {{ define "chart.valuesTable" -}}
  2. | Parameter | Description | Default |
  3. |-----------|-------------|---------|
  4. {{- range .Values }}
  5. | `{{ .Key }}` | {{ if .Description }}{{ .Description }}{{ else }}{{ .AutoDescription }}{{ end }} | {{ if .Default }}{{ .Default }}{{ else }}{{ .AutoDefault }}{{ end }} |
  6. {{- end }}
  7. {{- end -}}
  8. {{ define "generatedDocsWarning" -}}
  9. <!---
  10. Document is generated by `make helm-docs`. DO NOT EDIT.
  11. Edit the corresponding *.gotmpl.md file instead
  12. -->
  13. {{- end -}}