- 31 Oct, 2018 4 commits
-
-
Matthew Fisher authored
Signed-off-by: Matthew Fisher <matt.fisher@microsoft.com> (cherry picked from commit 3a551d01)
-
Matt Farina authored
Update circleCI badge to more consistent shield.
-
Matt Farina authored
Update quickstart.md
-
Maor Friedman authored
Signed-off-by: Maor <maor.friedman@nuvo-group.com>
-
- 30 Oct, 2018 1 commit
-
-
Bartel Sielski authored
Signed-off-by: Bartel Sielski <bsielski@nalys-group.com>
-
- 25 Oct, 2018 1 commit
-
-
masahiro authored
Signed-off-by: masahiro331 <m_fujimura@r.recruit.co.jp>
-
- 24 Oct, 2018 1 commit
-
-
Louis-Etienne authored
Signed-off-by: Louis-Etienne Dorval <ledor473@hotmail.com>
-
- 19 Oct, 2018 2 commits
-
-
Marc Khouzam authored
* Update Contributing.md to remove mention of CLA Signed-off-by: Marc Khouzam <marc.khouzam@ville.montreal.qc.ca> * Add hyperlink to git page in CONTRIBUTING.md Signed-off-by: Marc Khouzam <marc.khouzam@ville.montreal.qc.ca>
-
Alpha authored
Signed-off-by: Alpha <jhexe2002@gmail.com>
-
- 18 Oct, 2018 4 commits
-
-
Morten Torkildsen authored
Update of the client-go package changed the status output to only include the age of resources. The new printer in client-go only formats the output to include details of specific resources if the internal representation of resources are passed into the printer. This PR updates helm to convert resources to the internal type before printing. Closes #4712 Signed-off-by: Morten Torkildsen <mortent@google.com>
-
JJ Asghar authored
Updated the MySQL release, and put more output that gets sent to STDOUT with `helm install stable/mysql` Signed-off-by: JJ Asghar <jja@ibm.com>
-
Marc Khouzam authored
Signed-off-by: Marc Khouzam <marc.khouzam@ville.montreal.qc.ca>
-
mgresser authored
Signed-off-by: Mischa Gresser <mgresser@dstillery.com>
-
- 17 Oct, 2018 1 commit
-
-
Martin Hickey authored
* Add test template example for helm create As helm create ganerates an nginx chart, the example is based on https://github.com/helm/helm/blob/master/docs/examples/nginx/templates/ service-test.yaml Signed-off-by: Martin Hickey <martin.hickey@ie.ibm.com> * Update after review - https://github.com/helm/helm/pull/4524#pullrequestreview-155183390 - https://github.com/helm/helm/pull/4524#pullrequestreview-155379922 - Fix where app.kubernetes.io/instance was incorrect in service selector Signed-off-by: Martin Hickey <martin.hickey@ie.ibm.com> * Add doc update Signed-off-by: Martin Hickey <martin.hickey@ie.ibm.com> * Update GO formatting Signed-off-by: Martin Hickey <martin.hickey@ie.ibm.com>
-
- 16 Oct, 2018 1 commit
-
-
Anumita Shenoy authored
* feat(helm): add $HELM_KEY_PASSPHRASE environment variable for signing helm charts If $HELM_KEY_PASSPHRASE is set then helm package sign command will not prompt the user to enter the passphrase for the private key Signed-off-by: Anumita Shenoy <ansheno@microsoft.com> * docs(helm): added documentation for HELM_KEY_PASSPHRASE Added description for HELM_KEY_PASSPHRASE Signed-off-by: Anumita Shenoy <ansheno@microsoft.com>
-
- 13 Oct, 2018 2 commits
-
-
Etienne authored
Signed-off-by: Etienne Tremel <etienne.tremel@container-solutions.com>
-
Thomas Yuan authored
Signed-off-by: Thomas Yuan <thomas@cppcoder.net>
-
- 12 Oct, 2018 1 commit
-
-
Matt Tucker authored
Signed-off-by: Matt Tucker <ultimateboy@gmail.com>
-
- 11 Oct, 2018 4 commits
-
-
Adam Reese authored
fix paths in the ingress template and values file written by helm create
-
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 2 commits
-
-
Ryan Smith authored
The shield badge matches the go report and godoc badges. Signed-off-by: RPSeq <ryan.smith.p@gmail.com>
-
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>
-
- 26 Sep, 2018 1 commit
-
-
Arash Deshmeh authored
Signed-off-by: Arash Deshmeh <adeshmeh@ca.ibm.com>
-
- 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>
-