1. 14 Nov, 2017 2 commits
  2. 23 Oct, 2017 1 commit
  3. 11 Oct, 2017 1 commit
  4. 10 Oct, 2017 1 commit
  5. 09 Oct, 2017 1 commit
  6. 06 Oct, 2017 2 commits
  7. 03 Oct, 2017 1 commit
  8. 28 Sep, 2017 2 commits
  9. 27 Sep, 2017 2 commits
  10. 26 Sep, 2017 4 commits
  11. 22 Sep, 2017 2 commits
  12. 18 Sep, 2017 2 commits
  13. 15 Sep, 2017 1 commit
  14. 11 Sep, 2017 2 commits
  15. 08 Sep, 2017 1 commit
  16. 07 Sep, 2017 2 commits
  17. 06 Sep, 2017 3 commits
  18. 30 Aug, 2017 1 commit
  19. 29 Aug, 2017 1 commit
  20. 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
  21. 16 Aug, 2017 5 commits
  22. 10 Aug, 2017 1 commit
    • 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