Skip to content
Snippets Groups Projects
  1. Oct 17, 2017
  2. Sep 27, 2017
  3. Jul 27, 2017
    • Angus Lees's avatar
      Add manifestJson and manifestYaml functions · 1f85d5dd
      Angus Lees authored
      jsonnet's `std.toString()` returns "compact" JSON.  Sometimes this is
      not appropriate, particularly when generating large output that might
      need to be viewed/debugged by a human.
      
      This change implements manifestYaml and manifestJson functions, which
      generate YAML and "pretty" JSON respectively.
      
      A slight implementation wrinkle is that libjsonnet currently only
      supports passing primitive (scalar) types to native functions, so
      these arguments need to be JSON-serialised/unserialised across the
      native function call boundary.
  4. Jun 30, 2017
  5. Jun 28, 2017
  6. Jun 23, 2017
    • Angus Lees's avatar
      Add new `resolveImage` native function · 54405b18
      Angus Lees authored
      Add a new native function that resolves docker image names into more
      specific forms.  In particular, it can look up a docker registry and
      convert image:tag to image@digest at jsonnet-eval time.
      
      Limitations: Does not currently support private docker
      registries (that require authentication).
      
      Controlled via two new command line flags:
      - `--resolve-images` Change implementation of resolveImage native
        function. One of: noop, registry (default "noop")
      - `--resolve-images-error` Action when resolveImage fails. One of
        ignore,warn,error (default "warn")
      
      Note in particular that the defaults will *not* do remote registry
      lookups, and will only add an explicit ":latest" tag where no tag was
      given.
      
      Fixes #13
  7. Jun 22, 2017