This project is mirrored from https://gitee.com/zyxjob/helm.git. Pull mirroring failed .
Repository mirroring has been paused due to too many failed attempts. It can be resumed by a project maintainer.
  1. 12 Nov, 2018 2 commits
    • Brent's avatar
      fix(tiller): rollback deleted release (#3722) (#4820) · 9ae00beb
      Brent authored
      
      Solves #3722 by making the changes in #3539 more compatible with the previous behavior.
      
      This gives a recovery option for "oops I deleted my helm release" by allowing rollback, which is intended to be a working feature of helm. Note that purging releases removes the history required to rollback, so this doesn't work in that case. However, purging takes significantly more time, so it's harder to accidentally purge everything.
      Signed-off-by: default avatarBrent <bmperrea@gmail.com>
      9ae00beb
    • Morten Torkildsen's avatar
      fix(helm): Merge nested values correctly on upgrade (#4806) · 82d01cb3
      Morten Torkildsen authored
      
      Upgrading a release and override existing values doesn't work as expected for nested values. Maps should be merged recursively, but currently maps are treated just like values and replaced at the top level.
      
      If the existing values are:
      ```yaml
      resources:
        requests:
          cpu: 400m
        something: else
      ```
      and an update is done with ```--set=resources.requests.cpu=500m```, it currently ends up as
      ```yaml
      resources:
        requests:
          cpu: 500m
      ```
      but it should have been
      ```yaml
      resources:
        requests:
          cpu: 500m
        something: else
      ```
      
      This PR updates the way override values are merged into the existing set of values to merge rather than replace maps.
      
      Closes: #4792
      Signed-off-by: default avatarMorten Torkildsen <mortent@google.com>
      82d01cb3
  2. 09 Nov, 2018 1 commit
  3. 08 Nov, 2018 1 commit
  4. 07 Nov, 2018 8 commits
  5. 06 Nov, 2018 5 commits
  6. 01 Nov, 2018 3 commits
  7. 31 Oct, 2018 8 commits
  8. 30 Oct, 2018 1 commit
  9. 25 Oct, 2018 1 commit
  10. 24 Oct, 2018 1 commit
  11. 19 Oct, 2018 3 commits
  12. 18 Oct, 2018 4 commits
  13. 17 Oct, 2018 1 commit
  14. 16 Oct, 2018 1 commit