1. 18 Jan, 2018 2 commits
  2. 16 Jan, 2018 1 commit
    • Matt Farina's avatar
      fix(capabilities): Adding GitVersion to default set · d5a865b5
      Matt Farina authored
      Prior to this, using the semver template functions with the full
      version, which is represented in the GitVersion, was not possible
      for helm template and lint commands because the property was not
      populated by default. This update adds default handling.
      
      Closes #3349
      Unverified
      d5a865b5
  3. 12 Jan, 2018 1 commit
  4. 10 Jan, 2018 1 commit
    • rocky-nupt's avatar
      feat(helm): Add --col-width to helm list and helm history (#2836) · a6381e83
      rocky-nupt authored
      * feat(helm): Add --full-output to helm list and helm history
      
      The default maximum length of the output table is 60 chars.
      When the length is greater than 60, the content will be omitted.
      This patch adds -f and --full-output to helm list and helm history
      which can display full information of releases on the screen.
      
      Closes #2828
      
      * a
      
      * feat(helm): Add --full-output to helm list and helm history
      
      The default maximum length of the output table is 60 chars.
      When the length is greater than 60, the content will be omitted.
      This patch adds -f and --full-output to helm list and helm history
      which can display full information of releases on the screen.
      
      Closes #2828
      a6381e83
  5. 09 Jan, 2018 1 commit
  6. 05 Jan, 2018 1 commit
  7. 13 Dec, 2017 2 commits
    • Julian's avatar
      feat(helm): support namespace and additional values in lint (#2972) · ca415ab8
      Julian authored
      * Add "--namespace" to helm lint
      
      Keep lint syntax as close as possible to "helm install" resp. "helm
      upgrade", so that one only needs to change the command.
      
      See #2036
      
      * Align lintCmd struct
      
      * Add "--set" and "--values" to helm lint
      
      Keep lint syntax as close as possible to "helm install" resp. "helm
      upgrade", so that one only needs to change the command.
      
      Closes #2495,#2036
      
      * Reuse strict parameter, when rendering during lint
      
      We want to see the rendering fail, if we missed a value, so we reuse
      "--strict".
      
      See #2495,#2036
      
      * Fix lint unit test
      
      See #2495,#2036
      
      * Update docs
      ca415ab8
    • Pietro Menna's avatar
      fix(helm): Init not creating local-index symlink on Windows · 9129188f
      Pietro Menna authored
      os.Symlink required additional permissions on Windows, and init is not currently identifying the failed creation.
      
      Related to #2071
      Unverified
      9129188f
  8. 12 Dec, 2017 1 commit
  9. 06 Dec, 2017 1 commit
  10. 01 Dec, 2017 1 commit
    • Matthew Fisher's avatar
      fix TLS default path · 618094cc
      Matthew Fisher authored
      Without this change, running `helm list --tls` without setting $HELM_HOME causes helm to look for TLS certificates under /.
      618094cc
  11. 29 Nov, 2017 1 commit
  12. 24 Nov, 2017 1 commit
  13. 23 Nov, 2017 1 commit
  14. 22 Nov, 2017 5 commits
  15. 21 Nov, 2017 1 commit
    • Rajat Jindal's avatar
      support output-dir when running 'helm template' (#3144) · 7f13e13a
      Rajat Jindal authored
      * support output-dir when running 'helm template'
      
      * add --output-dir to documentation
      
      * when writing to file, dont add additional document
      
      * trigger another ci build. make test-unit works for me
      
      * dont write blank files
      
      * return err instead of panic
      7f13e13a
  16. 20 Nov, 2017 1 commit
  17. 16 Nov, 2017 1 commit
    • Matt Butcher's avatar
      Fix/missing ssl params (#3152) · e8e6ac5d
      Matt Butcher authored
      * fix(helm): add TLS params back
      
      During a recent refactor, several TLS flags stopped being processed for
      a few of the commands. This fixes those commands, and documents how to
      set up TLS.
      
      * fix(tiller): add stricter certificate verification
      
      The older version of Tiller allowed a weaker set of certificate checks
      than we intended. This version requires a client certificate, and then
      requires that that certificate be signed by a known CA. This works
      around the situation where a user could provide a self-signed
      certificate.
      Unverified
      e8e6ac5d
  18. 07 Nov, 2017 1 commit
  19. 01 Nov, 2017 2 commits
  20. 31 Oct, 2017 2 commits
  21. 26 Oct, 2017 1 commit
  22. 24 Oct, 2017 1 commit
  23. 21 Oct, 2017 1 commit
  24. 11 Oct, 2017 4 commits
  25. 10 Oct, 2017 1 commit
    • Justin Scott's avatar
      feat(helm): Add --node-selectors and --output flags to helm init · 16c579f3
      Justin Scott authored
      This feature enables users to specify more control over where Tiller pod
      lands by allowing "node-selectors" to be specified. Alternatively, the
      "--output" flag will skip install and dump Tiller's raw Deployment manifest to stdout so user may alter it as they see fit (probably with a JSON manipulation tool like jq).
      
      Closes #2299
      16c579f3
  26. 09 Oct, 2017 1 commit
  27. 06 Oct, 2017 1 commit
    • Matt Farina's avatar
      fix(semver): fixed edge cases that do not match prerelease · b27b11a2
      Matt Farina authored
      >0.0.0-a does not match pre-releases on 0.0.0 that start with a
      capital letter or number. This has to do with the ordering of
      code points. Numbers and capital letters come before lowercase
      letters.
      
      >0.0.0-0 should match all valid pre-releases on 0.0.0. According
      to the spec, "Numeric identifiers MUST NOT include leading zeroes."
      A 0 is also the lowest code point for all the allowed characters
      in a pre-release
      Unverified
      b27b11a2
  28. 26 Sep, 2017 2 commits