- 11 Sep, 2018 1 commit
-
-
Adam Reese authored
Signed-off-by:
Adam Reese <adam@reese.io>
-
- 24 Aug, 2018 1 commit
-
-
Adam Reese authored
-
- 14 Jun, 2018 1 commit
-
-
Matthew Fisher authored
To match the convention of `helm install`, `helm uninstall` is the inverse. Other tangential changes in this PR: - StatusDeleting has been changed to StatusUninstalling - StatusDeleted has been changed to StatusUninstalled - `helm list --deleted` has been changed to `helm list --uninstalled` - `helm list --deleting` has been changed to `helm list --uninstalling` - `helm.DeleteOption` and all delete options have been renamed to `helm.UninstallOption` I have not made any changes to the "helm.sh/hook-delete-policy", "pre-delete" and "post-delete" hook annotations because 1. it's a major breaking change to existing helm charts, which we've commited to NOT break in Helm 3 2. there is no "helm.sh/hook-install-policy" to pair with "helm.sh/hook-uninstall-policy", so delete still makes sense here `helm delete` and `helm del` have been added as aliases to `helm uninstall`, so `helm delete` and `helm del` still works as is.
-
- 10 May, 2018 2 commits
-
-
Adam Reese authored
-
Adam Reese authored
-
- 26 Apr, 2018 1 commit
-
-
Adam Reese authored
-
- 23 Apr, 2018 1 commit
-
- 19 Apr, 2018 1 commit
-
-
Adam Reese authored
-
- 18 Apr, 2018 1 commit
-
-
Adam Reese authored
-
- 16 Apr, 2018 1 commit
-
-
Adam Reese authored
-
- 08 Mar, 2018 1 commit
-
-
Matthew Fisher authored
When using `helm upgrade --install`, if the first release fails, Helm will respond with an error saying that it cannot upgrade from an unknown state. With this feature, `helm upgrade --install --force` automates the same process as `helm delete && helm install --replace`. It will mark the previous release as DELETED, delete any existing resources inside Kubernetes, then replace it as if it was a fresh install. It will then mark the FAILED release as SUPERSEDED.
-
- 27 Feb, 2018 1 commit
-
-
Johnny Bergström authored
* add test for rolling back from a FAILED deployment * Update naming of release variables Use same naming as the rest of the file. * Update rollback test - Add logging - Verify other release names not changed * fix(tiller): Supersede multiple deployments There are cases when multiple revisions of a release has been marked with DEPLOYED status. This makes sure any previous deployment will be set to SUPERSEDED when doing rollbacks. Closes #2941 #3513 #3275
-
- 26 Feb, 2018 1 commit
-
-
Adam Reese authored
Newer gits don't like checking out an empty string. ``` empty string is not a valid pathspec. please use . instead if you meant to match all paths ```
-
- 05 Jan, 2018 1 commit
-
-
Adam Reese authored
-
- 18 Dec, 2017 1 commit
-
-
Andrey Klimentyev authored
-
- 03 Nov, 2017 1 commit
-
-
Adam Reese authored
Fixes #2437 Two bugs were causing this behavior - Tiller was marking the previous release superseded when an upgrade failed. - Upgrade was diffing against failed releases
-
- 09 Oct, 2017 1 commit
-
-
Remington Reackhof authored
-
- 26 Sep, 2017 1 commit
-
-
Maxim Ivanov authored
-
- 10 Aug, 2017 1 commit
-
-
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
-
- 19 Jul, 2017 1 commit
-
-
Justin Scott authored
Tiller currently hangs indefinitely when deadlocks arise from certain concurrent operations. This commit removes the nested mutex locking system from pkg/Storage and relies on resource contention controls in k8s. Closes #2560
-
- 26 Jun, 2017 1 commit
-
-
Justin Scott authored
-
- 31 May, 2017 1 commit
-
-
Taylor Thomas authored
This builds on previous work and adds more logging to follow the full process of installing, updating, deleting, and rolling back. This also standardizes capitalization of logs and small formatting fixes
-
- 19 May, 2017 1 commit
-
-
Adam Reese authored
Adds a generic logging interface to importable packages.
-
- 24 Apr, 2017 1 commit
-
-
Maciej Kwiek authored
Environment is supplied with release lock map which allows to lock a release by name to make sure that update, rollback or uninstall aren't running on one release at the same time.
-
- 11 Apr, 2017 2 commits
-
-
Adam Reese authored
Rebase on kubernetes v1.6
-
Sushil Kumar authored
Fixes https://github.com/kubernetes/helm/issues/2251 In case a user tries to delete a non-existent release, the error message displayed was missing release-name.
-
- 15 Mar, 2017 1 commit
-
-
Adam Reese authored
If a selector is created from invalid values it will return nil. Which is EVERYTHING!!! closes: #2115
-
- 07 Feb, 2017 1 commit
-
-
Larry Rensing authored
Users can now specify a namespace filter for 'helm list'. Only the releases within the specified namespace will be shown. For example, 'helm list --namespace foo' will only show releases for the 'foo' namespace. Also added a namespace field to the table view. Closes #1563
-
- 05 Jan, 2017 1 commit
-
-
Adam Reese authored
RIP
-
- 26 Dec, 2016 1 commit
-
-
dongziming authored
-
- 15 Dec, 2016 1 commit
-
-
Matt Butcher authored
New properties are available to template developers. Closes #1554
-
- 13 Dec, 2016 2 commits
-
-
Adam Reese authored
-
Adam Reese authored
-
- 03 Dec, 2016 1 commit
-
-
Matt Butcher authored
There are some places where releases are only located if they are in the state DEPLOYED. That particular logic was incorrectly used for upgrades. That caused #1566. While fixing that issue, I found that this was also the root cause of #1587 (though because it was off by one). I added a generic method to get the last release, regardless of its status. This allows some behaviors that previously failed: - 'helm upgrade' can now be performed on a DELETED release - 'helm rollback' can now be performed on a DELETED release even if there is only one revision of that release history. Closes #1566 Closes #1587
-
- 20 Oct, 2016 1 commit
-
-
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.
-
- 17 Oct, 2016 1 commit
-
-
Matt Butcher authored
There were a few places where error messages were accessing properties of objects that were nil because of the error. Closes #1374
-
- 12 Oct, 2016 1 commit
-
-
fibonacci1729 authored
-
- 07 Oct, 2016 1 commit
-
-
Adam Reese authored
Prevent testing package from being imported into main application
-
- 05 Oct, 2016 1 commit
-
-
fibonacci1729 authored
-
- 15 Sep, 2016 1 commit
-
-
fibonacci1729 authored
-