1. 01 Sep, 2017 1 commit
  2. 31 Aug, 2017 5 commits
  3. 30 Aug, 2017 3 commits
  4. 29 Aug, 2017 1 commit
    • Justin Scott's avatar
      feat(helm): use openssl sha1 command · 46ce97c1
      Justin Scott authored
      Currently the bash script that installs Helm is hard-coded to use
      openssl sha command but some distros like Debian 9 only have sha1.
      Since the popular current distros have sha1 we can switch to that.
      
      Closes(#2859)
      46ce97c1
  5. 28 Aug, 2017 1 commit
  6. 27 Aug, 2017 1 commit
  7. 25 Aug, 2017 2 commits
  8. 24 Aug, 2017 2 commits
    • xuhaigang's avatar
      Fix(helm): Fix the bug of dependency update deleting subcharts · 4ffb9dfb
      xuhaigang authored
      In Helm 2.6.0, the new delete feature that deletes old versions of
      charts is deleting subcharts that aren't in requirements.yaml.
      In this patch, I judge the dependency whether it is included in the
      requirements.yaml before deleting it.
      
      Closes #2830
      4ffb9dfb
    • DockerZK's avatar
      feat(*) add key helm.sh/hook-delete-policy to hook annotation · 734b1245
      DockerZK authored
      When "helm.sh/hook-delete-policy: hook-succeeded" is provided in a hook's annotation, Tiller will automatically delete the hook after the hook is succeeded. When "helm.sh/hook-delete-policy: hook-failed" is provided in a hook's annotation, Tiller will automatically delete the hook after the hook is failed.
      
      Closes #1769
      734b1245
  9. 18 Aug, 2017 2 commits
  10. 17 Aug, 2017 2 commits
  11. 16 Aug, 2017 10 commits
  12. 15 Aug, 2017 3 commits
  13. 14 Aug, 2017 2 commits
  14. 13 Aug, 2017 1 commit
  15. 10 Aug, 2017 4 commits
    • Justin Scott's avatar
      Merge pull request #2793 from nebril/add-mkwiek-owners · 176228a6
      Justin Scott authored
      Add nebril to OWNERS
      176228a6
    • Matt Butcher's avatar
      feat(tiller): limit number of versions stored per release · 0853f490
      Matt Butcher authored
      This adds a new configuration option to Tiller to limit the number of
      records stored per release.
      
      Tiller stores historical release information (helm history, helm
      rollback). This makes it possible to set a maximum number of versions
      per release.
      
      To enable this feature, use `helm init --history-max NNN`. Note that
      because of the restrictions on Deployment objects, you will have to
      re-install Tiller to add a limit.
      
      Along the way, I found an unreported bug in the Memory storage driver.
      This fixes that bug and adds substantially more tests to catch
      regressions.
      
      Closes #2332
      0853f490
    • Maciej Kwiek's avatar
      Add nebril to OWNERS · a9b4f895
      Maciej Kwiek authored
      a9b4f895
    • Maciej Kwiek's avatar
      Delete old deps after chart deps are updated · 9c4bb146
      Maciej Kwiek authored
      This change changes the order of operations in
      pkg/downloader.Manager.downloadAll
      
      Old charts are moved to tmp directory which is restored in case any
      dependency update fails. Otherwise tmp dir is deleted.
      9c4bb146