Documentation ¶
Index ¶
- type Delims
- type Functions
- func (f *Functions) FuncMap() template.FuncMap
- func (f *Functions) JSONPath(object interface{}, jsonpath string) string
- func (f *Functions) KGet(path, jsonpath string) string
- func (f *Functions) ParseMarkdownTables(input string) []MarkdownTable
- func (f *Functions) Template(template string, vars interface{}) (string, error)
- type MarkdownTable
- type StructTemplater
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Functions ¶
type Functions struct {
RightDelim, LeftDelim string
Custom template.FuncMap
// contains filtered or unexported fields
}
func NewFunctions ¶
func NewFunctions(clientset *kubernetes.Clientset) *Functions
func (*Functions) ParseMarkdownTables ¶ added in v0.23.0
func (f *Functions) ParseMarkdownTables(input string) []MarkdownTable
type MarkdownTable ¶ added in v0.23.0
type StructTemplater ¶
type StructTemplater struct { Values map[string]interface{} Clientset *kubernetes.Clientset // IgnoreFields from walking where key is field name and value is field type IgnoreFields map[string]string Funcs template.FuncMap DelimSets []Delims // If specified create a function for each value so that is can be accessed via {{ value }} in addition to {{ .value }} ValueFunctions bool RequiredTag string // contains filtered or unexported fields }
func (StructTemplater) Struct ¶
func (w StructTemplater) Struct(reflect.Value) error
this func is required to fulfil the reflectwalk.StructWalker interface
func (StructTemplater) StructField ¶
func (w StructTemplater) StructField(f reflect.StructField, v reflect.Value) error
func (StructTemplater) Walk ¶ added in v0.24.0
func (w StructTemplater) Walk(object interface{}) error
Click to show internal directories.
Click to hide internal directories.