- 11 Oct, 2018 3 commits
-
-
Adam Reese authored
Add the `.vscode` folder to the `.helmignore` file
-
Adam Reese authored
Remove redundant nil checks
-
Adam Reese authored
ref(*): kubernetes v1.12 support
-
- 10 Oct, 2018 1 commit
-
-
Rijnard van Tonder authored
Signed-off-by: Rijnard van Tonder <hi.teresy@gmail.com>
-
- 09 Oct, 2018 1 commit
-
-
Martin Hickey authored
Signed-off-by: Martin Hickey <martin.hickey@ie.ibm.com>
-
- 06 Oct, 2018 1 commit
-
-
Florian Rusch authored
Signed-off-by: Florian Rusch <git@florianrusch.de>
-
- 04 Oct, 2018 1 commit
-
-
Adam Reese authored
Signed-off-by: Adam Reese <adam@reese.io>
-
- 01 Oct, 2018 1 commit
-
-
adshmh authored
Use 'apps/v1' as the apiVersion field for the deployment.yaml written by the 'helm create' command, rather than the deprecated 'apps/v1beta2'. Signed-off-by: Arash Deshmeh <adeshmeh@ca.ibm.com>
-
- 28 Sep, 2018 1 commit
-
-
Matt Butcher authored
Signed-off-by: Matt Butcher <matt.butcher@microsoft.com>
-
- 27 Sep, 2018 1 commit
-
-
Colin Panisset authored
Signed-off-by: Colin Panisset <colin.panisset@cevo.com.au>
-
- 19 Sep, 2018 1 commit
-
-
Matthew Fisher authored
* fix(helm): fix regression with TLS flags/envvars This change fixes some of the assumptions made in an earlier commit. Helm's TLS flags and environment variables were not respected because they were parsed well before execution (during settings.AddFlagsTLS()), causing erroneous behaviour at runtime. By re-introducing environment.Init(), Helm can properly parse environment variables at the correct time. One change that had to occur in this PR is the fact that we need to call settings.Init() each time we call settings.AddFlagsTLS(). This is because each command owns its own FlagSet, so we need to parse each flagset to read and propagate the environment variables correctly. I also noticed that we were maintaining two separate variables for each TLS value. Refactoring out some of the older code to all use the settings object makes the code much cleaner to read and fixes an issue where setting a flag or environment variable would propagate to the settings object, but we'd be reading from tlsEnable. I've also added some unit tests to ensure this regression doesn't occur again. Signed-off-by: Matthew Fisher <matt.fisher@microsoft.com> * fix bug where os.ExpandEnv() on the default value causes differing behaviour Signed-off-by: Matthew Fisher <matt.fisher@microsoft.com> * add more context to the TODO/FIXME messages Signed-off-by: Matthew Fisher <matt.fisher@microsoft.com>
-
- 18 Sep, 2018 2 commits
-
-
Caleb Delnay authored
Fixes Issue #4299 and Issue #4445 Signed-off-by: Caleb Delnay <calebdelnay@gmail.com>
-
Qiang Li authored
changed instancelease to instance in service template closes #4661 Signed-off-by: Qiang Li <liqiang@gmail.com>
-
- 17 Sep, 2018 6 commits
-
-
Yuya Takeyama authored
* Install tiller as well if it exists Signed-off-by: Yuya Takeyama <sign.of.the.wolf.pentagram@gmail.com> * Fix message ref: https://github.com/helm/helm/pull/4648#discussion_r218229227Signed-off-by: Yuya Takeyama <sign.of.the.wolf.pentagram@gmail.com>
-
Yuya Takeyama authored
Signed-off-by: Yuya Takeyama <sign.of.the.wolf.pentagram@gmail.com>
-
Louis Munro authored
Signed-off-by: Louis Munro <lm@louismunro.com>
-
Steve Wolter authored
Should fix #4585. Signed-off-by: Steve Wolter <swolter@google.com>
-
Matthew Fisher authored
Signed-off-by: Matthew Fisher <matt.fisher@microsoft.com>
-
Matt Butcher authored
Signed-off-by: Matt Butcher <matt.butcher@microsoft.com>
-
- 14 Sep, 2018 1 commit
-
-
Carlos Tadeu Panato Junior authored
Signed-off-by: cpanato <ctadeu@gmail.com>
-
- 13 Sep, 2018 1 commit
-
-
Helgi Þormar Þorbjörnsson authored
linters were failing with: pkg/urlutil/urlutil_test.go:1::warning: file is not gofmted with -s (gofmt) Signed-off-by: Helgi Þorbjörnsson <helgith@gmail.com>
-
- 12 Sep, 2018 3 commits
-
-
Michelle Noorali authored
Clearer wording when using pipelines
-
Nenad Stojanovikj authored
Signed-off-by: Nenad Stojanovikj <nekk1@live.com>
-
Pratyush Verma authored
Fix typo Signed-off-by: Pratyush Verma <vermapratyush@gmail.com>
-
- 10 Sep, 2018 3 commits
-
-
adshmh authored
Signed-off-by: Arash Deshmeh <adeshmeh@ca.ibm.com>
-
Matthew Fisher authored
* Fix race in helm list when partitioning Problem: The chunks slice that is passed through the channel is reused for each partition. This means that encoding the release into a message is racing with populating the next partition, causing the results to sometimes not fit in the message, and the release list to be incorrect Solution: Allocate a new slice for each partition Issue #3322 Signed-off-by: Brian Marshall <bmarshall13@users.noreply.github.com> (cherry picked from commit a0858e29d877b8aa19478133865e45958ff21a9e) * fix import sorting Signed-off-by: Matthew Fisher <matt.fisher@microsoft.com> * ref(release_server_test): use NewReleaseServer() Signed-off-by: Matthew Fisher <matt.fisher@microsoft.com> * add unit test for race condition in `helm list` Signed-off-by: Matthew Fisher <matt.fisher@microsoft.com>
-
Robert James Hernandez authored
* fix(helm): Use env to locate bash Leverage '/usr/bin/env bash` for find bash instead of hardcoding '/bin/bash' since some *nix OSes have it installed elsewhere. Signed-off-by: Robert James Hernandez <rob@sarcasticadmin.com> * test(helm): Adding case for versions short flag When git sha is empty if being built from tarball running 'helm version --short' should just ignore '--short' since sha is empty. Adding test to ensure this is the case. Signed-off-by: Robert James Hernandez <rob@sarcasticadmin.com> * fix(helm): ignore short flag when sha is empty Signed-off-by: Robert James Hernandez <rob@sarcasticadmin.com>
-
- 09 Sep, 2018 1 commit
-
-
Thomas Garlot authored
Signed-off-by: tgarlot <thomas@garlot.net>
-
- 07 Sep, 2018 5 commits
-
-
Anton Osmond authored
Signed-off-by: Anton Osmond <antonosmond@gmail.com>
-
Ian Chen authored
Signed-off-by: Ian Chen <ianchen06@gmail.com>
-
Matthew Fisher authored
Signed-off-by: Matthew Fisher <matt.fisher@microsoft.com>
-
Matthew Fisher authored
Signed-off-by: Matthew Fisher <matt.fisher@microsoft.com>
-
Matthew Fisher authored
Signed-off-by: Matthew Fisher <matt.fisher@microsoft.com>
-
- 04 Sep, 2018 1 commit
-
-
Fabian Ruff authored
* Avoid importing k8s.io/kubernetes from pkg/helm When writing a helm client (e.g. a helm plugin) that talks to tiller importing k8s.io/helm/pkg/helm to get the grpc client is key. This pkg should not have a dependency to the k8s.io/kubernetes to avoid pulling in a lot of code that is only used within tiller and blow up binary sizes. Signed-off-by: Fabian Ruff <fabian@progra.de> * Add references to pull request in errors message Signed-off-by: Fabian Ruff <fabian@progra.de> * copy helper function from pkg/storage/driver Signed-off-by: Fabian Ruff <fabian@progra.de> * Move storage errors to seperate package Signed-off-by: Fabian Ruff <fabian@progra.de> * Keep old error variables for backward compatibility Signed-off-by: Fabian Ruff <fabian@progra.de>
-
- 03 Sep, 2018 1 commit
-
-
Christian Köberl authored
Signed-off-by: Christian Koeberl <christian.koeberl@gmail.com>
-
- 02 Sep, 2018 2 commits
-
-
Matthew Fisher authored
New helm notes command to display notes provided by a release's chart
-
Arash Deshmeh authored
Signed-off-by: Arash Deshmeh <adeshmeh@ca.ibm.com>
-
- 01 Sep, 2018 3 commits
-
-
Matthew Fisher authored
feat(helm): add ability to sort release list by chart name
-
Matthew Fisher authored
Fix init wait on tls
-
Arash Deshmeh authored
Signed-off-by: Arash Deshmeh <adeshmeh@ca.ibm.com>
-