1. 26 Oct, 2016 7 commits
  2. 25 Oct, 2016 1 commit
  3. 21 Oct, 2016 1 commit
  4. 20 Oct, 2016 2 commits
    • Matt Butcher's avatar
      fix(helm): use 127.0.0.1 instead of localhost · 4b7e4b71
      Matt Butcher authored
      This switches the local chart repo to use 127.0.0.1 instead of localhost
      so that the net library does not negotiate localhost to an IPv6 address,
      which is known to cause issues in some Docker containers.
      
      Breaking Change: When testing on a system that does NOT have IPv4
      configured, this will break 'helm serve'. We estimate this will impact
      none of the current user base.
      
      Closes #1410
      4b7e4b71
    • Fabian Ruff's avatar
      Add compression to configmap storage driver · eb4b78bb
      Fabian Ruff authored
      This commit changes the configmap storage driver to compress
      the serialized release before storing it as a base64 encoded string.
      This change is backward compatible as it handles existing releases
      gracefully by skipping the decompression step when the gzip magic
      header is not present.
      eb4b78bb
  5. 19 Oct, 2016 2 commits
  6. 18 Oct, 2016 2 commits
  7. 17 Oct, 2016 3 commits
  8. 14 Oct, 2016 4 commits
  9. 13 Oct, 2016 2 commits
  10. 12 Oct, 2016 3 commits
  11. 10 Oct, 2016 2 commits
  12. 07 Oct, 2016 3 commits
  13. 06 Oct, 2016 1 commit
  14. 05 Oct, 2016 4 commits
    • fibonacci1729's avatar
      e9dd302a
    • Matt Butcher's avatar
      fix(*): remove references to gopkg.in/yaml.v2 · fd0303c8
      Matt Butcher authored
      This removes the last of the requests for gopkg.in/yaml.v2, and
      also the struct annotations.
      
      Closes #1192
      Closes #1263
      fd0303c8
    • Matt Butcher's avatar
      fix(repo): auto-update index file formats · ea0e665f
      Matt Butcher authored
      This performs a relatively weak in-memory translation of index file
      data. It does not, in most cases, write the corrected data to disk, and
      it emits a warning directly to STDERR each time it loads a deprecated
      index.
      
      Known limitations:
      
      - It cannot recover certain bogus records that earlier alpha releases
        generated (notably, where all chartfile data is missing)
      - In some cases, it has to parse a filename to get version info. This is
        lossy.
      - Because it takes three passes through the YAML and JSON unmarshal, it
        is not performant.
      
      This feature is transitional and should be removed during the Beta
      cycle, prior to the release of 2.0.0.
      
      Closes #1265
      ea0e665f
    • Matt Butcher's avatar
      feat(tiller): re-use values during upgrade · 3e3312ce
      Matt Butcher authored
      When `helm install -f foo.yaml bar` is called, and then the release is
      upgraded with `helm upgrade happy-panda bar`, this will now re-use the
      values that were submitted with `-f foo.yaml`. The same is true for
      values specified with `--set`.
      
      Closes #1227
      3e3312ce
  15. 04 Oct, 2016 3 commits