1. 10 Mar, 2017 1 commit
  2. 09 Mar, 2017 8 commits
  3. 08 Mar, 2017 7 commits
  4. 07 Mar, 2017 9 commits
  5. 06 Mar, 2017 8 commits
  6. 04 Mar, 2017 2 commits
  7. 03 Mar, 2017 3 commits
  8. 02 Mar, 2017 2 commits
    • Taylor Thomas's avatar
      Merge pull request #2046 from thomastaylor312/fix/2043-wait-panic · 570930be
      Taylor Thomas authored
      fix(tiller): Fixes `--wait` panic on upgrade
      570930be
    • Dmitry Monakhov's avatar
      install: Return more user-friendly response on eexists · 33ace505
      Dmitry Monakhov authored
      Most newcomers hit helm's 'feature' there deleted instalations are not really deleted.
      Use-case
      # helm install  --name gitlab-ce-1 ./stable/gitlab-ce
      # helm delete gitlab-ce-1
      # helm list
      # helm install  --name gitlab-ce-1 ./stable/gitlab-ce
      Error: a release named "gitlab-ce-1" already exists
      
      There is a lot duplicated bugs in bugzilla which simply explains that packages
      should be deleted with --pure flag. But such bugs appeared again and again
      because this behavior is not obvious.
      
      Let's help user to figure out what happens ASAP.
      33ace505