Justin Scott
70192cda1a
Merge pull request #3305 from bacongobbler/add-amd-arch-to-get
...
add amd, ppc64le, and windows OS/architectures
7 years ago
Matthew Fisher
f652f45398
Merge pull request #2784 from rocky-nupt/proposal-add-k8s-version
...
feat(tiller/proto):Allow charts to specify k8s compatibility
7 years ago
Matthew Fisher
c462b28f14
Merge pull request #3321 from akshaisarathy/master
...
Adding Platform9 info
7 years ago
Akshai Parthasarathy
9c04c660cf
updating language
7 years ago
Akshai Parthasarathy
e6280d157c
Adding Platform9 info
7 years ago
Matthew Fisher
e1027fae73
refactor symWalk() into pkg/sympath ( #3199 )
...
* refactor symWalk() into pkg/sympath
* add Go copyright
* remove dead code
7 years ago
Justin Scott
9d0f9a24fd
Merge pull request #3315 from bacongobbler/add-bracket
...
add missing parentheses
7 years ago
Matthew Fisher
cf1c9e66ad
Merge pull request #3318 from cordoval/patch-1
...
fix typo
7 years ago
Luis Cordova
724b3898a4
fix typo
7 years ago
xuhaigang
61623bfe2d
feat(tiller/proto):Allow charts to specify k8s compatibility in semver field
...
Add an optional field kubeVersion to Chart.yaml that allows the chart
developer to specify a semver compliant version.
Closes #2708 , #2706
7 years ago
Matthew Fisher
b3cc17b770
add missing parentheses
7 years ago
Adam Reese
a31e3b8fe1
ref(*): kubernetes v1.9 support ( #3234 )
7 years ago
Taylor Thomas
170cff83c2
Merge pull request #3120 from TimDumol/feat/dep-up-error-msg
...
feat(helm): add better error message to 'dep up'
7 years ago
Brad Beam
8e0eface2c
Making starter templates more versatile
...
This adds support for changing '<CHARTNAME>'
occurances in starter chart to the destination
chart name
7 years ago
Tim Dumol
8fae16fbb2
feat(helm): add better error message to 'dep up'
...
When a user enters a non-URL (such as stable)
in requirements.yaml and tries to `helm dep up`,
they get a potentially confusing error message.
This tries to make the error message clearer.
Closes #2672
7 years ago
Matthew Fisher
5cb0eb5e3b
add amd, ppc64le, and windows OS/architectures
7 years ago
Matthew Fisher
1e373043b7
Merge pull request #3233 from pietromenna/symbolic-link-on-helm-init
...
fix(helm): Init not creating local-index symlink on Windows
7 years ago
Matthew Fisher
5decaa244e
Merge pull request #2754 from rbwsam/feat/get_kube_ver
...
feat(*): add k8s version to version debug cmd
7 years ago
Matthew Fisher
55ab4b8664
Merge pull request #2986 from goostleek/bug/installation-script-fix
...
Installation shell script fix
7 years ago
Matthew Fisher
78d6b930bd
Merge pull request #3061 from eicnix/feature/tpl-fix
...
fix(helm): Set template context inside tpl function to outer function.
7 years ago
Matthew Fisher
6c585d47a8
Merge pull request #3266 from nokia/docs/downloader-plugin
...
docs: downloader plugin documentation
7 years ago
Matthew Fisher
8f3b734cf1
install zip
7 years ago
Matthew Fisher
ca23180bd8
Merge pull request #3302 from distorhead/no_resource_found_error_message_fix
...
Show kind in resource-not-found-in-release error
7 years ago
Timofey Kirillov
13cb8d8244
Show kind in resource-not-found-in-release error
...
This error occures when resource is not found in helm release:
`Error: UPGRADE FAILED: no resource with the name "redis-cluster-sentinel" found`
Changed to:
`Error: UPGRADE FAILED: no ConfigMap with the name "redis-cluster-sentinel" found`
So now that resource can easily be found in cluster.
7 years ago
Matthew Fisher
8a59aed59f
Merge pull request #3295 from mgalgs/docs-link-fix
...
docs(chart_template_guide): Fix link
7 years ago
Mitchel Humpherys
e4274c448c
docs(chart_template_guide): Fix link
...
Fix a Glob link floating around with some invalid markdown and an invalid
target.
7 years ago
Matthew Fisher
72895ddaec
Merge pull request #3291 from thockin-tmp/gcr-vanity
...
Convert registry to k8s.gcr.io
7 years ago
Tim Hockin
05d4b30730
Convert registry to k8s.gcr.io
7 years ago
Matthew Fisher
1c30e61dde
Merge pull request #3280 from gmiretti/patch-1
...
doc: Fix command formatting on plugins help
7 years ago
Matthew Fisher
bae4f4bb24
Merge pull request #3281 from gmiretti/patch-2
...
docs: Fix broken bullets by Note in docs.helm.sh
7 years ago
Matthew Fisher
03b3eddab3
Merge pull request #3285 from spiffxp/update-code-of-conduct
...
Update code-of-conduct.md
7 years ago
Aaron Crickenberger
5cbeef6217
Update code-of-conduct.md
...
Refer to kubernetes/community as authoritative source for code of conduct
7 years ago
Nicole Renée Hubbard
6ade38fb72
feat(pkg/helm): allow concurrent requests on a shared client
...
change to helm client to no longer save request options in the client
options. This resulted in options from a previous call still being
present in future calls.
Closes #3253
7 years ago
Gabriel Miretti
9735642fe8
Fix broken bullets by Note in docs.helm.sh
7 years ago
Gabriel Miretti
219e1075ce
Fix command formatting
7 years ago
Matthew Fisher
60985e8ba6
Merge pull request #3272 from zuzzas/patch-1
...
Typo fix
7 years ago
Andrey Klimentyev
cfb7dfa82c
Typo fix
7 years ago
Gergo Huszty
a8b95ca1d1
Downloader plugin documentation added.
7 years ago
Matthew Fisher
188964c507
Merge pull request #3259 from NaurisSadovskis/master
...
Fix package url
7 years ago
Nauris Sadovskis
bd8178d50b
Fix package url
7 years ago
Matthew Fisher
51a6f3c326
Merge pull request #3247 from mgalgs/missing-repos-help
...
feat(repo): Improve error message for missing repositories.yaml
7 years ago
Julian
ca415ab8db
feat(helm): support namespace and additional values in lint ( #2972 )
...
* 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
7 years ago
Pietro Menna
9129188fad
fix(helm): Init not creating local-index symlink on Windows
...
os.Symlink required additional permissions on Windows, and init is not currently identifying the failed creation.
Related to #2071
7 years ago
Matthew Fisher
6707fe0468
Merge pull request #3190 from mattfarina/feat/status-json
...
feat(status): Optional output as JSON and YAML
7 years ago
Mitchel Humpherys
6de70254fd
feat(repo): Add test for non-existent repo path
7 years ago
Mitchel Humpherys
7417f09293
feat(repo): Improve error message for missing repositories.yaml
...
New users to helm don't always run `helm init` (e.g. if their cluster
already has helm installed). The user's initial interaction with any of
helm's repository commands (e.g. `helm repo list`) will then be an error
message due to a missing repositories.yaml in their local config.
Give the user a little hint about how to fix the error without them having
to hunt through the man/help pages.
7 years ago
Matthew Fisher
1042f6118b
Merge pull request #3122 from cofyc/fix_charts_permission
...
Remove executable permission bit for charts downloaded from remote repos
7 years ago
Matthew Fisher
646ab43bc4
Merge pull request #3232 from hobti01/patch-3
...
Fix example and reference version matching syntax
7 years ago
Matthew Fisher
6eb6b15457
Merge pull request #3248 from realfake/patch-2
...
Fix helm ls in Quickstart
7 years ago
Matt Farina
9d4b9ca208
feat(status): Optional output as JSON and YAML
7 years ago