oilbeater
0764d95a03
defer in loop may cause resource leak
...
defer statement executes only when function return, and the resource still be hold during loop. Release the resource manually when not needed.
7 years ago
Matthew Fisher
7609ad29e2
Merge pull request #3474 from adshmh/fix-golint-warning-in-install
...
fix(helm): fix the build-time golint warning on 'cmd/helm/install.go'
7 years ago
Arash Deshmeh
244b1b1528
fix(helm): fix the build-time golint warning on 'cmd/helm/install.go'
...
When building helm, golint no longer generates the following warning:
cmd/helm/install.go:502:9⚠️ if block ends with a return statement, so drop this else and outdent its block (golint)
Signed-off-by: Arash Deshmeh <adeshmeh@ca.ibm.com>
7 years ago
Matthew Fisher
b02c6ffb91
use an underscore for release_checklist.md
...
Brings it in line with the rest of the documentation in docs/
7 years ago
Matt Farina
6a1dd806ed
Merge pull request #3469 from mattfarina/fix/3322
...
fix(grpc): Fixes issue where message sending limited to 4mb
7 years ago
Matthew Fisher
3c39e72189
Merge pull request #3401 from bacongobbler/revert-kubeconfig-flag
...
Revert "feat(helm): adding kubeconfig flag"
7 years ago
Matt Farina
614cd9dfe7
fix(grpc): Fixes issue where message sending limited to 4mb
...
Between grpc 1.2.x and 1.7.x there was an API change. The
previous MaxMsgSize is now a wrapper around MaxRecvMsgSize. This
change now sets the MaxRecvMsgSize and MaxSendMsgSize which need
to be set independently.
7 years ago
Matthew Fisher
2a9a9f1851
Merge pull request #3458 from bacongobbler/remove-master-references
...
remove references to the term "master"
7 years ago
Matt Farina
8fb909a630
Merge pull request #3459 from mattfarina/fix/3382
...
fix(api-machinery): Fixes patching for unstructured objects
7 years ago
Matthew Fisher
f61a3cff5f
Merge pull request #3461 from huanghuangzym/patch-4
...
HELM DOC TYPO
7 years ago
lihuang
bf8bc42cfc
Update tiller_ssl.md
7 years ago
Matt Farina
e6137ff05f
fix(api-machinery): Fixes patching for unstructured objects
...
CRDs and other objects seen as unstructured cannot use strategic
merge patching. It has never been supported on CRDs. Previously,
cases like unstructured objects could have caused an unregistered
error. This is no longer the case.
This change explicitly looks for unstructured objects and handles
those using json merge patching.
Closes #3382
7 years ago
Matthew Fisher
f487a486f1
Merge pull request #3400 from bacongobbler/fix-3392
...
fix helm init --upgrade logic
7 years ago
Matthew Fisher
2724387506
Merge pull request #3373 from unguiculus/feature/fix-recreate-part-1
...
Fix pod recreation
7 years ago
Matthew Fisher
c316193a62
remove references to the term "master"
7 years ago
Matthew Fisher
add98dab9b
Merge pull request #3451 from huanghuangzym/patch-3
...
Update developers.md
7 years ago
Matthew Fisher
40ae3fa2f0
Merge pull request #3452 from jianliao82/patch-1
...
Update charts_tips_and_tricks.md to fix typo error
7 years ago
Matthew Fisher
f90da08b3a
Merge pull request #3455 from jonas/patch-1
...
Fix subchart2 example tag
7 years ago
Jonas Fonseca
782b394e97
Fix subchart2 example tag
7 years ago
liaoj
db31b7a9da
Update charts_tips_and_tricks.md
...
typo error
comand --> command
7 years ago
lihuang
dddce02b94
Update developers.md
7 years ago
Adam Reese
31e6446b8e
ref(glide): remove need for scripts/setup-apimachinery.sh ( #3446 )
7 years ago
Matthew Fisher
1f87bf031a
Merge pull request #3388 from scriptonist/master
...
docs: fixed incorrect clone path in developer docs
7 years ago
Matt Farina
4b578f44ff
Merge pull request #3407 from paolomainardi/feature/3173_fix_wait_for_deployments
...
refs #3173 : add appsv1beta1 and appsv1beta2 apiVersion
7 years ago
Matthew Fisher
5debe73763
Merge pull request #3424 from huanghuangzym/master
...
fix doc some spell check
7 years ago
lihuangzym
f953b2be2d
fix doc spell check
7 years ago
Matthew Fisher
14136964f5
Merge pull request #3406 from barkerd427/patch-1
...
Disambiguate encoding from secrets
7 years ago
Matthew Fisher
6dcb8d0022
Merge pull request #3419 from huanghuangzym/master
...
the spell check
7 years ago
Adnan Abdulhussein
6060daa2f8
Merge pull request #3408 from unguiculus/feature/rbac
...
Update RBAC best practices
7 years ago
lihuangzym
b9bd81dc7f
the spell check
7 years ago
Arnaud Rinquin
67c190af28
doc(tips): Add an exception to tip about quoting integers
...
Add a sentence to balance the advice about not quoting integers as it can cause headaches when applied to env variables.
7 years ago
Oilbeater
d1b3523b2b
Update Makefile
...
Remove symbol table and debug info from go binary to reduce image size
7 years ago
Paolo Mainardi
b065ffe1fc
adding other missing apiVersions
7 years ago
Reinhard Nägele
cbea403d04
Update RBAC best practices
7 years ago
Paolo Mainardi
2cee4c68fa
add appsv1beta1 and appsv1beta2 apiVersion
7 years ago
Reinhard Nägele
ea520afd3e
Fix 'getSelectorFromObject'
7 years ago
Matthew Fisher
28b05b8817
Merge pull request #3402 from bacongobbler/fix-circle-deploy
...
exit zero on non-master branch
7 years ago
Matthew Fisher
748dbda29a
Merge pull request #3399 from bacongobbler/fix-release-checklist
...
Fix release checklist
7 years ago
Matthew Fisher
e77fdf5de0
Merge pull request #3404 from liubin/patch-1
...
Fix typo
7 years ago
Daniel Barker
2a0090c8c7
Disambiguate encoding from secrets
7 years ago
Bin Liu
3c66183cb5
Fix typo
7 years ago
Bin Liu
1e0906ed67
Fix type
7 years ago
Matthew Fisher
d28d1756f8
exit zero on non-master branch
...
While we still don't want to upload to GCS/GCR, we also don't want the CI run to fail because we are just skipping the step. This is most usually seen in the `release-X.Y` branches cut every minor release.
7 years ago
Matthew Fisher
f13c4d28b5
Revert "feat(helm): adding kubeconfig flag"
...
This reverts commit 371ff8f26d
.
7 years ago
Matthew Fisher
4947e5aaf8
fix helm init --upgrade logic
7 years ago
Matthew Fisher
8604e0b832
bump version to v2.8
...
also add it to the release checklist.
7 years ago
Matthew Fisher
4763cca8cb
fix RELEASE_BRANCH_NAME
...
the release branch was of the format `release-vX.Y.Z` when it should be `release-X.Y`.
7 years ago
Matthew Fisher
ad54e71ab9
Merge pull request #3395 from bacongobbler/changelog-2.8
...
bump version to v2.8.0
7 years ago
Matthew Fisher
02496708de
bump version to v2.8.0
...
(cherry picked from commit 14af25f1de
)
7 years ago
jonathan.striebel
d77a60a462
change child-parent title & links to fix links
7 years ago