Skip to content
Snippets Groups Projects
  1. Jun 28, 2017
    • Angus Lees's avatar
      Simply quickstart further · dd14013d
      Angus Lees authored
      Remove poor attempt at setup step entirely.  This makes the actual
      quickstart content more obvious ... and anyone who _actually_ wants to
      run it will already know how to checkout a git repo.
      dd14013d
  2. Jun 27, 2017
  3. Jun 26, 2017
  4. Jun 24, 2017
  5. 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
      54405b18
  6. Jun 22, 2017
  7. Jun 16, 2017
  8. Jun 14, 2017
  9. Jun 13, 2017
  10. Jun 09, 2017
  11. Jun 07, 2017
  12. Jun 06, 2017
  13. Jun 05, 2017
  14. May 29, 2017
  15. May 23, 2017
  16. May 19, 2017
    • Angus Lees's avatar
      Merge pull request #6 from anguslees/sort · bb5d9bf6
      Angus Lees authored
      Attempt to topologically sort resources before updating
      bb5d9bf6
    • Angus Lees's avatar
      Attempt to topologically sort resources before updating · fad478f6
      Angus Lees authored
      The goal is to make a best-effort attempt at reducing the number of
      "crash-restart" loops required to bring up a group of interdependent
      resources.
      
      The current implementation is very simple and just sorts into 3 tiers:
      - Namespace, ThirdPartyResource, StorageClass
      - everything else
      - Pods or similar (Pod/Job/Deployment/DaemonSet/StatefulSet)
      fad478f6