Taylor Thomas
2f16e0ed26
Merge pull request #6092 from mumoshu/fix-failing-crd-update
...
fix: upgrade charts with CRD changes
5 years ago
Martin Hickey
78c03fcba7
Merge pull request #6105 from hickeyma/add-sign-key
...
chore(*): Add public signing key
5 years ago
Martin Hickey
9e33f84a6f
Add public signing key
...
Signed-off-by: Martin Hickey <martin.hickey@ie.ibm.com>
5 years ago
Matt Farina
ad4b8ee8e0
Merge pull request #6093 from mattfarina/add-KEYS-maint-docs
...
Adding release docs for the KEYS file and keyservers
5 years ago
Matt Farina
50386b2917
Adding release docs for the KEYS file and keyservers
...
Signed-off-by: Matt Farina <matt@mattfarina.com>
5 years ago
Matt Farina
7191e30782
Merge pull request #6091 from mattfarina/initial-add-KEYS
...
Adding a KEYS file with public pgp signing keys for Helm releases
5 years ago
Matt Farina
88fc1f03c3
Adding a KEYS file with public pgp signing keys for Helm releases
...
This file contains the keys and instructions for adding KEYS and
importing them. It follows the model Apache uses for a file like
this.
Signed-off-by: Matt Farina <matt@mattfarina.com>
5 years ago
Yusuke Kuoka
ae52477fbd
fix: upgrade with CRD changes
...
Probably since K8s 1.13.x, `converter.ConvertToVersion(info.Object, groupVersioner)` which is the body of `asVersioned` doesn't return an error or an "unstructured" object, but `apiextensions/v1beta1.CustomResourceDefinition`.
The result was `helm upgrade` with any changes in CRD consistently failing.
This fixes that by adding an additional case of the conversion result being `v1beta1.CustomResourceDefinition`.
This is a backward-compatible change as it doesn't remove existing switch cases for older K8s versions.
Fixes #5853
Signed-off-by: Yusuke Kuoka <ykuoka@gmail.com>
5 years ago
Martin Hickey
e70f012bb6
Merge pull request #6082 from ethan-daocloud/patch-1
...
cleanup: error message typos in sql.go
5 years ago
ethan
c086f78583
cleanup: error message typos in sql.go
...
Signed-off-by: ethan <guangming.wang@daocloud.io>
5 years ago
Matthew Fisher
b09b73cab0
Merge pull request #6067 from moredip/patch-1
...
Fix broken link in docs/related.md
5 years ago
Matthew Fisher
8cacb2c35d
Merge pull request #6077 from tariq1890/fix_lint
...
fix golint issues reported by make test
5 years ago
Tariq Ibrahim
276bb9b1c8
fix golint issues reported by make test
...
Signed-off-by: Tariq Ibrahim <tariq181290@gmail.com>
5 years ago
Matthew Fisher
7ab62324eb
Merge pull request #6069 from bridgetkromhout/fix-link-add-aks
...
Fixing link; adding AKS.
5 years ago
Bridget Kromhout
ce0ad06e94
Fixes per helpful feedback
...
Signed-off-by: Bridget Kromhout <bridget@kromhout.org>
5 years ago
Bridget Kromhout
d8b7984d75
Fixing link; adding AKS.
...
Signed-off-by: Bridget Kromhout <bridget@kromhout.org>
5 years ago
Pete Hodgson
7247956b96
Fix broken link in docs/related.md
...
Looks like this hackernoon link is now broken, probably from when they moved off of Medium.
Signed-off-by: Pete Hodgson <git@thepete.net>
5 years ago
Matthew Fisher
a85a18c53f
Merge pull request #6064 from bacongobbler/helm-2-lgtm-process
...
docs(CONTRIBUTING): one LGTM for maintainers
5 years ago
Matthew Fisher
e98534d694
docs(CONTRIBUTING): one LGTM for maintainers
...
Signed-off-by: Matthew Fisher <matt.fisher@microsoft.com>
5 years ago
Martin Hickey
d953c6875c
Merge pull request #6039 from Constantin07/add_hpa_to_sorting_order
...
Added HPA to sort order.
5 years ago
Constantin Bugneac
535df90cc8
Added HorizontalPodAutoscaler to sort order.
...
Signed-off-by: Constantin Bugneac <constantin.bugneac@worldfirst.com>
5 years ago
Matthew Fisher
88bb48bc6f
Merge pull request #6010 from icanhazbroccoli/icanhazbroccoli/chartutil-no-scientific-notation
...
chartutil.ReadValues is forced to unmarshal numbers into json.Number refs #1707
5 years ago
Matthew Fisher
a4b1d01283
Merge pull request #6028 from nmerdan/github-issue-5988
...
Fix documentation to use existing chart in the stable repository
5 years ago
Nenad Merdanovic
5a39ff90ad
Fix documentation to use existing chart in the stable repository
...
Signed-off-by: Nenad Merdanovic <nmerdan@anine.io>
5 years ago
Martin Hickey
545518dace
Merge pull request #5748 from sebosp/list-mode-install-order
...
Added List mode for Role, ClusterRole and Bindings
5 years ago
Seb Ospina
320e853b8d
Added List mode for Role, ClusterRole and Bindings
...
Kubernetes supports RoleList, RoleBindingList, ClusterRoleList and
ClusterRoleBindingList, in order for a Role to be bound, it must
already exist.
For the List reference, see: https://github.com/kubernetes/kubernetes/blob/master/pkg/apis/rbac/types.go
Signed-off-by: Seb Ospina <kraige@gmail.com>
5 years ago
Martin Hickey
55193089e6
Merge pull request #6004 from rossf7/glide-1-15-0
...
chore(glide): bump kubernetes to 1.15.0
5 years ago
Oleg Sidorov
70cd32c4ce
Fixed failing tests for helm installer
...
Signed-off-by: Oleg Sidorov <oleg.sidorov@booking.com>
5 years ago
Oleg Sidorov
9014bd9c50
chartutil.ReadValues is forced to unmarshal numbers into json.Number
...
This change is an attempt to address the common problem of json number
unmarshalling where any number is converted into a float64 and
represented in a scientific notation on a marshall call. This behavior
breaks things like: chart versions and image tags if not converted to
yaml strings explicitly.
An example of this behavior: k8s failure to fetch an image tagged with a
big number like: $IMAGE:20190612073634 after a few steps of yaml
re-rendering turns into: $IMAGE:2.0190612073634e+13.
Example issue: https://github.com/helm/helm/issues/1707
This commit forces yaml parser to use JSON modifiers and explicitly
enables interface{} unmarshalling instead of float64. The change
introduced might be breaking so should be processed with an extra care.
Due to the fact helm mostly dals with human-produced data (charts), we
have a decent level of confidence this change looses no functionality
helm users rely upon (the scientific notation).
Relevant doc: https://golang.org/pkg/encoding/json/#Decoder.UseNumber
Signed-off-by: Oleg Sidorov <oleg.sidorov@booking.com>
5 years ago
Ross Fairbanks
86f9b9fa4c
chore(glide): bump kubernetes to 1.15.0
...
Signed-off-by: Ross Fairbanks <ross@rossfairbanks.com>
5 years ago
Taylor Thomas
4cbbd1046a
Merge pull request #5559 from steven-sheehy/downloader-subcommands
...
Add sub-command support to plugin downloader
5 years ago
Matthew Fisher
9b1d8f9c86
Merge pull request #5966 from willise/master
...
ref(tiller): add more info when force update
5 years ago
willise
a1b391951e
ref(tiller): add more info when force update
...
Signed-off-by: willise <sunshuai@cmss.chinamobile.com>
5 years ago
Matthew Fisher
566bdf7afa
Merge pull request #5967 from nehagup/patch-1
...
Documentation upgrade
5 years ago
Matthew Fisher
62448a93ba
Merge pull request #5969 from kostis-codefresh/related-ci-cd-codefresh
...
Mentioned Codefresh in related Helm services.
5 years ago
Kostis (Codefresh)
98b7738081
Mentioned Codefresh in related Helm services.
...
Signed-off-by: Kostis Kapelonis <kostis@codefresh.io>
5 years ago
Neha Gupta
34bb64c0ff
Documentation upgrade
...
According to documentation helm install [CHART] [flags] should be the usage pattern. Seems a new update.
Signed-off-by: Neha Gupta <gneha21@yahoo.in>
5 years ago
Matt Farina
66d71811e8
Merge pull request #5942 from ds-ms/addDebugLogs
...
Adding extra debug logs
5 years ago
Matt Farina
e2b3afcf26
Merge pull request #5902 from mattfarina/expand-default-capabilities
...
Add more capabilities to the detault set used by helm template
5 years ago
Martin Hickey
25546fad9f
Merge pull request #5919 from naseemkullah/security-context
...
[helm create] Add security context to deployment template
5 years ago
ds-ms
b280fa5a7d
Adding extra debug logs
...
Signed-off-by: ds-ms <desattir@microsoft.com>
Using debug function instead
Signed-off-by: ds-ms <desattir@microsoft.com>
Removing [INFO] from the message
5 years ago
Naseem
23420fc436
Merge https://github.com/helm/helm into security-context
...
Signed-off-by: Naseem <naseemkullah@gmail.com>
5 years ago
Matthew Fisher
0b474e688f
Merge pull request #5933 from hongshaoyang/revert-5551-docs-chart-best-practices-fixes
...
Revert "Fixed default value for `helm.sh/chart` label"
5 years ago
Shao Yang Hong
b16ec08899
Revert "Fixed default value for `helm.sh/chart` label"
...
Signed-off-by: Shao Yang <shaoyang.hong@visenze.com>
5 years ago
Matthew Fisher
5744c66592
Merge pull request #5931 from tao12345666333/update-to-alpine-3.10
...
ref(rootfs):update to alpine 3.10
5 years ago
Jintao Zhang
cdb0571c79
update to alpine 3.10
...
Signed-off-by: Jintao Zhang <zhangjintao9020@gmail.com>
5 years ago
Naseem
9af767c0e5
Add security context
...
Signed-off-by: Naseem <naseemkullah@gmail.com>
5 years ago
Martin Hickey
c3242d1be4
Merge pull request #5532 from mortent/WaitForDelete
...
fix(helm): Delete hooks should wait for resource to be removed from etcd before continuing
5 years ago
Morten Torkildsen
cb2207c2fb
fix(helm): Delete hooks should wait for resource to be removed from etcd before continuing
...
Signed-off-by: Morten Torkildsen <mortent@google.com>
5 years ago
Matt Farina
d6596690bf
Merge pull request #5910 from mattfarina/increment-sprig
...
Updating sprig dependency version
5 years ago