korvike

command module
v1.0.2 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Apr 19, 2024 License: Apache-2.0 Imports: 8 Imported by: 0

README

Luzifer / korvike

korvike is the Finnish translation to the word "replacer" and that is what it does: It takes a Go template and executes it.

Available functions

Starting with v1.0.0 Korvike is based on the sprig functions collection with some additions:

  • {{ .<variable name> }}
    Take key-value pairs from the CLI and replace them inside the template
    $ echo "{{ .foo }}" | korvike -v foo=bar
    bar
    
  • {{ file <file name> }} / {{ mustFile <file name> }}
    Read a file and place it inside the template, file returns an empty string on error, mustFile an error
    $ echo "Hello World" > hello
    $ echo '{{ file "hello" }}' | korvike
    Hello World
    
  • {{ markdown <source> }}
    Format the source using a markdown parser
    $ echo '{{ markdown "# headline" }}' | korvike
    <h1>headline</h1>
    
  • {{ tplexec (file "my.tpl") }}
    Execute the given template with the same function set and variables as the parent template.
    $ export FOO=bar
    $ echo '{{ env "FOO" }}' >my.tpl
    $ echo '{{ tplexec (file "my.tpl") }}' | korvike
    bar
    
  • {{ urlescape <input string> }}
    Do an URL escape to use the input string inside an query parameter in an URL
    $ echo '{{ urlescape "Hellö Wörld@Golang" }}' | korvike 
    Hell%C3%B6+W%C3%B6rld%40Golang
    
  • {{ vault <path> <key> }} / {{ mustVault <path> <key> }}
    Read a key from Vault using VAULT_ADDR and VAULT_TOKEN environment variables (or ~/.vault-token file) for authentication. vault returns an empty string on error, mustVault an error
    $ vault write secret/test foo=bar
    $ echo '{{ vault "secret/test" "foo" }}' | korvike
    bar
    

Documentation

The Go Gopher

There is no documentation for this package.

Directories

Path Synopsis
functions module

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL