This repository has been archived by the owner on Feb 22, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 16.7k
Support for additional resources #10
Labels
Comments
@jason-riddle Thanks for the issue. Yes, we need to support the new resource types. A PR would be most welcome. Re: questions:
|
Closing this as charts have been cleared as of #18 |
2 tasks
gdmello
added a commit
to gdmello/charts
that referenced
this issue
Feb 14, 2019
…byte of ...|thStyle":true,"s3Url|..., bigger context ..."
gdmello
added a commit
to gdmello/charts
that referenced
this issue
Feb 14, 2019
…byte of ...|thStyle":true,"s3Url|..., bigger context ..." Signed-off-by: gdmello <gavindmello@gmail.com>
k8s-ci-robot
pushed a commit
that referenced
this issue
Feb 19, 2019
… of ...|thStyle":true,"s3Url|..., bigger context ..." (#11427) Signed-off-by: gdmello <gavindmello@gmail.com>
mhamwala
added a commit
to mhamwala/helm-charts
that referenced
this issue
Apr 24, 2019
4 tasks
hyperbolic2346
added a commit
to hyperbolic2346/charts
that referenced
this issue
Oct 13, 2020
I'm using helm 3 version `version.BuildInfo{Version:"v3.3.4", GitCommit:"a61ce5633af99708171414353ed49547cf05013d", GitTreeState:"clean", GoVersion:"go1.14.9"}` and I can't create this chart with git enabled. The following error is thrown: ``` Error: Deployment in version "v1" cannot be handled as a Deployment: v1.Deployment.Spec: v1.DeploymentSpec.Template: v1.PodTemplateSpec.Spec: v1.PodSpec.Containers: []v1.Container: v1.Container.Env: []v1.EnvVar: v1.EnvVar.Value: ReadString: expects " or n, but found 3, error found in helm#10 byte of ...|,"value":30},{"name"|..., bigger context ...|e":"FETCH_HEAD"},{"name":"GIT_SYNC_WAIT","value":30},{"name":"GIT_SYNC_DEST","value":"/git"}],"image|... ``` This change quotes the timeout and allows chart creation.
hyperbolic2346
added a commit
to hyperbolic2346/charts
that referenced
this issue
Oct 13, 2020
I'm using helm 3 version `version.BuildInfo{Version:"v3.3.4", GitCommit:"a61ce5633af99708171414353ed49547cf05013d", GitTreeState:"clean", GoVersion:"go1.14.9"}` and I can't create this chart with git enabled. The following error is thrown: ``` Error: Deployment in version "v1" cannot be handled as a Deployment: v1.Deployment.Spec: v1.DeploymentSpec.Template: v1.PodTemplateSpec.Spec: v1.PodSpec.Containers: []v1.Container: v1.Container.Env: []v1.EnvVar: v1.EnvVar.Value: ReadString: expects " or n, but found 3, error found in helm#10 byte of ...|,"value":30},{"name"|..., bigger context ...|e":"FETCH_HEAD"},{"name":"GIT_SYNC_WAIT","value":30},{"name":"GIT_SYNC_DEST","value":"/git"}],"image|... ``` This change quotes the timeout and allows chart creation. Signed-off-by: Mike Wilson <knobby@burntsheep.com>
k8s-ci-robot
pushed a commit
that referenced
this issue
Nov 8, 2020
* Adding quote to git sync wait I'm using helm 3 version `version.BuildInfo{Version:"v3.3.4", GitCommit:"a61ce5633af99708171414353ed49547cf05013d", GitTreeState:"clean", GoVersion:"go1.14.9"}` and I can't create this chart with git enabled. The following error is thrown: ``` Error: Deployment in version "v1" cannot be handled as a Deployment: v1.Deployment.Spec: v1.DeploymentSpec.Template: v1.PodTemplateSpec.Spec: v1.PodSpec.Containers: []v1.Container: v1.Container.Env: []v1.EnvVar: v1.EnvVar.Value: ReadString: expects " or n, but found 3, error found in #10 byte of ...|,"value":30},{"name"|..., bigger context ...|e":"FETCH_HEAD"},{"name":"GIT_SYNC_WAIT","value":30},{"name":"GIT_SYNC_DEST","value":"/git"}],"image|... ``` This change quotes the timeout and allows chart creation. Signed-off-by: Mike Wilson <knobby@burntsheep.com> * updating chart version Signed-off-by: Mike Wilson <knobby@burntsheep.com>
jonty-uk-gov-mirror
pushed a commit
to uk-gov-mirror/ministryofjustice.charts
that referenced
this issue
Apr 11, 2021
Update kube-slack for k8s116
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
I don't expect this to be supported anytime soon but I just wanted to bring this up. Kubernetes 1.2 was released about a week ago and with the release it brought a new resource.
Config Map
Now it is possible to use a config map to define your environment variables, an example I threw together is shown here
This isn't supported by the
github.com/kubernetes/charts/common/replicatedservice:v2
template at the moment due to the assumption that every entry in env will have the keys 'name' and 'value'.https://github.com/kubernetes/charts/blob/2ecf8f3cd3a12e36c2d9d4e1faf4ddd531c55838/common/replicatedservice/v2/replicatedservice.py#L192-L194.
Also, it looks like the following aren't supported at the moment as well, which Kubernetes has had prior to 1.2.
Limits and Requests
Liveness Probe
I'd be happy to submit a pull request adding functionality to
replicatedservice:v2
, but I had a few questions first.replicatedservice:v2
) trying to support all of the resources or only a popular subset?v2
or should av3
be created?I know I can just fork and modify the template to suit my needs and then just use that, but then that wouldn't be any use to the community.
The text was updated successfully, but these errors were encountered: