- 06 Jul, 2020 1 commit
-
-
Matthew Fisher authored
Updating the install instructions
-
- 02 Jul, 2020 2 commits
-
-
Matt Farina authored
This mirrors the change already merged into v3 at https://github.com/helm/helm-www/pull/713 Signed-off-by:
Matt Farina <matt@mattfarina.com>
-
Matt Farina authored
Add Apt (Deb/Ubuntu) installation instructions for Helm 2
-
- 26 Jun, 2020 1 commit
-
-
Martin Hickey authored
Add Warning when installing or upgrading a deprecated chart - replacing PR #8262
-
- 25 Jun, 2020 4 commits
-
-
Matthew Fisher authored
Consider namespace when comparing resources
-
Matt Farina authored
Adding init flad to skip adding repos
-
Matt Farina authored
The stable charts repository is nearing the end of its life. Once that has happened those who attempt to run helm init will get an error. This flag provides a means to still use Helm v2 after the stable charts repository is gone. A secondary situation is that Helm v2 can be used in environmnets without a network connection. Closes #7868 Signed-off-by:
Matt Farina <matt@mattfarina.com>
-
Matthew Fisher authored
Adding --devel to helm inspect
-
- 24 Jun, 2020 1 commit
-
-
Martin Hickey authored
fix(kube): Backport add more informative error message for removed k8s APIs
-
- 20 Jun, 2020 1 commit
-
-
Stanton Xu authored
Signed-off-by:
Stanton Xu <xjiefeng@gmail.com>
-
- 17 Jun, 2020 2 commits
-
-
Martin Hickey authored
Review comment: - https://github.com/helm/helm/pull/8198/files#r435237511 Signed-off-by:
Martin Hickey <martin.hickey@ie.ibm.com>
-
Martin Hickey authored
Signed-off-by:
Martin Hickey <martin.hickey@ie.ibm.com>
-
- 16 Jun, 2020 1 commit
-
-
Bridget Kromhout authored
Signed-off-by:
Bridget Kromhout <bridget@kromhout.org>
-
- 15 Jun, 2020 1 commit
-
-
Matt Butcher authored
Signed-off-by:
Matt Butcher <matt.butcher@microsoft.com>
-
- 12 Jun, 2020 1 commit
-
-
Fabian Ruff authored
Fixes #6857 X-Cherry-Picked: 7f7e90b4 Signed-off-by:
Mike Lundy <mike@fluffypenguin.org>
-
- 10 Jun, 2020 1 commit
-
-
Adam Reese authored
Signed-off-by:
Adam Reese <adam@reese.io>
-
- 22 May, 2020 6 commits
-
-
Martin Hickey authored
doc(*): Backport deprecated Kubernetes API doc
-
Martin Hickey authored
Pulled in review comments from https://github.com/helm/helm-www/pull/639 Signed-off-by:
Martin Hickey <martin.hickey@ie.ibm.com>
-
Martin Hickey authored
Review comment: - https://github.com/helm/helm/pull/8135#issuecomment-629527051 Signed-off-by:
Martin Hickey <martin.hickey@ie.ibm.com>
-
Martin Hickey authored
Signed-off-by:
Martin Hickey <martin.hickey@ie.ibm.com>
-
Matt Farina authored
Adding a counter to the dependencies cache
-
Matt Farina authored
The cache needed to be cleared due to an issue presented when the source for one dependency moved from one place to another. To accomplish this we add a counter. This is similar to the recommendation in the CircleCI documentation on caching Closes #8184 Signed-off-by:
Matt Farina <matt@mattfarina.com>
-
- 15 May, 2020 1 commit
-
-
Matthew Fox authored
Signed-off-by:
Matthew Fox <matt@getbalto.com>
-
- 05 May, 2020 2 commits
-
-
Matthew Fisher authored
[Helm 2] fix(Makefile): disable go modules
-
Matthew Fisher authored
Signed-off-by:
Matthew Fisher <matt.fisher@microsoft.com>
-
- 28 Apr, 2020 1 commit
-
-
Matt Farina authored
Fix issue with sorting pod lists
-
- 23 Apr, 2020 1 commit
-
-
Matt Johnson authored
Signed-off-by:
Matt Johnson <mjohnson@sonatype.com>
-
- 15 Apr, 2020 2 commits
-
-
Matt Farina authored
The sorting previously used the selfref which contained the name on the end for all cases except pods. In that case the selfref was to pods and not the specific pod. This caused an issue where multiple pods had the same selfref used as the key for softing. The objects being sorted are tables that each have one row. In the new setup the key is the first cells value from the first and only row. This is the name of the resource. Note, the Get function now requests a table. The tests have been updated to return a Table type for the objects. Closes #7924 Signed-off-by:
Matt Farina <matt@mattfarina.com>
-
Matt Butcher authored
Signed-off-by:
Matt Butcher <matt.butcher@microsoft.com>
-
- 13 Apr, 2020 1 commit
-
-
Matt Farina authored
Fix nil pointer error
-
- 01 Apr, 2020 1 commit
-
-
Matt Butcher authored
Signed-off-by:
Matt Butcher <matt.butcher@microsoft.com>
-
- 30 Mar, 2020 1 commit
-
-
Matt Farina authored
Closes #7812 Signed-off-by:
Matt Farina <matt@mattfarina.com>
-
- 26 Mar, 2020 1 commit
-
-
Matt Farina authored
Fixing validation issue
-
- 25 Mar, 2020 1 commit
-
-
Matt Farina authored
Latest() should not have been added Validate Closes #7797 Signed-off-by:
Matt Farina <matt@mattfarina.com>
-
- 20 Mar, 2020 5 commits
-
-
Matthew Fisher authored
fix(engine): allow limited recursion in templates
-
Matthew Fisher authored
backport of #7558 from master Signed-off-by:
Matthew Fisher <matt.fisher@microsoft.com>
-
Matthew Fisher authored
This is a backport for PR 7443. Signed-off-by:
Matthew Fisher <matt.fisher@microsoft.com>
-
Matt Farina authored
Restores display of object status when displaying helm status
-
Matt Farina authored
Changes to the Kubernetes API server and kubectl libraries caused the status to no longer display when helm status was run for a release. This change restores the status display. Generation of the tables for display was moved server side. A request for the data as a table is made and a kubectl printer for tables can display this data. Kubectl uses this setup and the structure here closely resembles kubectl. kubectl is still able to display objects as tables from prior to server side printing but only prints limited information. Note, an extra request is made because table responses cannot be easily transformed into Go objects for Kubernetes types to work with. There is one request to get the resources for display in a table and a second request to get the resources to lookup the related pods. The related pods are now requested as a table as well for display purposes. This is likely part of the larger trend to move features like this server side so that more libraries in more languages can get to the feature. Closes #6896 Signed-off-by:
Matt Farina <matt@mattfarina.com>
-
- 06 Mar, 2020 1 commit
-
-
Fernando Antivero authored
* align both formats behaviors and now they will just differ in how to discover their paths * add coverage for exports format and fix expected assertions for parent-child format to match the logic child values always wins * just partially revert dda84976, this way parents values could be overridden when coalescing * after getting better coverage we were able to refact both formats behaviors by merging their propagation logics into a single code path.
-