Skip to content

Latest commit

 

History

History
95 lines (75 loc) · 1.49 KB

Readme.md

File metadata and controls

95 lines (75 loc) · 1.49 KB

Templater

License Build Status Version

Templater is a cli tool that helps you to quickly and easily create files from templates, using go template.

How to use

  1. Inline variables
# File using helm templating
cat <<'EOF'>file
---
{{- $name := "John" }}
class:
{{- range $i := until 11 }}
  {{$i}}: {{$name}}
{{- end }}
EOF

templater -i file

# This will be the output

File: out/file
---
class:
  0: John
  1: John
  2: John
  3: John
  4: John
  5: John
  6: John
  7: John
  8: John
  9: John
  10: John
  1. Passing variables from external yaml, using helm style templating.
# Value file
cat <<'EOF'>values.yaml
school: Govt. Public School
EOF
# File using helm templating
cat <<'EOF'>file
---
{{- $name := "John" }}
class:
  school: {{ .Values.school }}
{{- range $i := until 11 }}
  {{$i}}: {{$name}}
{{- end }}
EOF

templater -i file -f values.yaml -o out/

# This will be the output

File: out/file
---
class:
  school: Govt. Public School
  0: John
  1: John
  2: John
  3: John
  4: John
  5: John
  6: John
  7: John
  8: John
  9: John
  10: John

Installation

  1. HomeBrew

brew install rjshrjndrn/tap/templater

  1. Binary

Download the latest binary from Release Page.

  1. Using go get
go get github.com/rjshrjndrn/templater