|
Re: Helm Chart Kubernetes Versioning
I don't think Helm has any means of obtaining the OpenShift version, as this is usually obtained via the openshift CLI (`oc version`). Doesn't look like the Cababilities object only supports data on
I don't think Helm has any means of obtaining the OpenShift version, as this is usually obtained via the openshift CLI (`oc version`). Doesn't look like the Cababilities object only supports data on
|
By
Adam Kaplan
·
#52
·
|
|
Re: Helm Chart Kubernetes Versioning
> Besides the capabilities object for Kubernetes versions, is there a way to decipher between Kubernetes and OpenShift versions?
I’m not familiar enough with OpenShift to be able to know.
As CRDs,
> Besides the capabilities object for Kubernetes versions, is there a way to decipher between Kubernetes and OpenShift versions?
I’m not familiar enough with OpenShift to be able to know.
As CRDs,
|
By
Matt Farina
·
#51
·
|
|
Re: Helm Chart Kubernetes Versioning
Thank you for this information, Matt!
Besides the capabilities object for Kubernetes versions, is there a way to decipher between Kubernetes and OpenShift versions?
--
Natasha
Thank you for this information, Matt!
Besides the capabilities object for Kubernetes versions, is there a way to decipher between Kubernetes and OpenShift versions?
--
Natasha
|
By
wnatasha@...
·
#50
·
|
|
Re: Helm Chart Kubernetes Versioning
There is a Capabilities object available in Charts that has some information about the Kubernetes cluster including the version. You can use this to detect different Kuberentes versions and handle
There is a Capabilities object available in Charts that has some information about the Kubernetes cluster including the version. You can use this to detect different Kuberentes versions and handle
|
By
Matt Farina
·
#49
·
|
|
Helm Chart Kubernetes Versioning
How do Helm charts handle differences in K8S API objects between different K8S/OpenShift versions? For example, for the apiVersion parameter, is there a way for Helm to know what version to put in
How do Helm charts handle differences in K8S API objects between different K8S/OpenShift versions? For example, for the apiVersion parameter, is there a way for Helm to know what version to put in
|
By
wnatasha@...
·
#48
·
|
|
Re: Upgrade with rolling restart
Never mind. I just added RollingUpdate as my updateStrategy and it worked perfectly. Sorry for the
white noise.
--
SIMON FONTANA OSCARSSON
Software Developer
Ericsson
Ölandsgatan 1
37133
Never mind. I just added RollingUpdate as my updateStrategy and it worked perfectly. Sorry for the
white noise.
--
SIMON FONTANA OSCARSSON
Software Developer
Ericsson
Ölandsgatan 1
37133
|
By
Simon Fontana Oscarsson
·
#47
·
|
|
Upgrade with rolling restart
Hi,
I have a statefulset as a helm chart. When doing helm upgrade I would like to perform a rolling
restart of all pods. Is this possible with just helm? Is there a better workaround than performing
Hi,
I have a statefulset as a helm chart. When doing helm upgrade I would like to perform a rolling
restart of all pods. Is this possible with just helm? Is there a better workaround than performing
|
By
Simon Fontana Oscarsson
·
#46
·
|
|
Community Repo Moved
Now that Helm has moved to the CNCF we are starting to move repositories to the helm organization. The first to move is the Helm community repo which is now at github.com/helm/community
It will be a
Now that Helm has moved to the CNCF we are starting to move repositories to the helm organization. The first to move is the Helm community repo which is now at github.com/helm/community
It will be a
|
By
Matt Farina
·
#45
·
|
|
Re: How to override the default helm chart values in values.yaml using hapi?
I tried to use command “helm install —set app1.key1=abc my chart”, and it worked. So I read the source code helm command, eventually I figured out the root cause.
The structure of the values
I tried to use command “helm install —set app1.key1=abc my chart”, and it worked. So I read the source code helm command, eventually I figured out the root cause.
The structure of the values
|
By
benjamin <benjamin_wang@...>
·
#44
·
|
|
Re: How to override the default helm chart values in values.yaml using hapi?
Note that I did not use helm client, instead, I use gRPC API to communicate with tiller server directly.
I just reviewed the source code of helm client. It just configures the
Note that I did not use helm client, instead, I use gRPC API to communicate with tiller server directly.
I just reviewed the source code of helm client. It just configures the
|
By
benjamin <benjamin_wang@...>
·
#43
·
|
|
Re: How to override the default helm chart values in values.yaml using hapi?
If you want to override values, you'll want to add your values as a ValueOverride option to InstallRelease. An example can be found within
If you want to override values, you'll want to add your values as a ValueOverride option to InstallRelease. An example can be found within
|
By
Matt Fisher <matt.fisher@...>
·
#42
·
|
|
How to override the default helm chart values in values.yaml using hapi?
I use the following code (golang) to deploy helm chart into kubernetes. I removed the error handling code for simplicity.
The last parameter "values" is used to override the values of some fields
I use the following code (golang) to deploy helm chart into kubernetes. I removed the error handling code for simplicity.
The last parameter "values" is used to override the values of some fields
|
By
benjamin <benjamin_wang@...>
·
#41
·
|
|
Re: Prevent an accidental helm delete
If your cluster is using RBAC, you could remove the tiller's RoleBinding (or at least its delete permissions) to prevent the tiller from carrying out an unintended delete.
Thanks,
Bryan
If your cluster is using RBAC, you could remove the tiller's RoleBinding (or at least its delete permissions) to prevent the tiller from carrying out an unintended delete.
Thanks,
Bryan
|
By
Bryan Rosander
·
#40
·
|
|
Re: Prevent an accidental helm delete
Hey Victor,
I'm not aware of a way to do this right now, but a --prompt option flag has been suggested previously (though for helm install). We'd be more than happy to see a PR to add that flag! We'd
Hey Victor,
I'm not aware of a way to do this right now, but a --prompt option flag has been suggested previously (though for helm install). We'd be more than happy to see a PR to add that flag! We'd
|
By
Matt Fisher <matt.fisher@...>
·
#39
·
|
|
Prevent an accidental helm delete
Hi,
Is there a way to prevent an accidental helm delete?
Regards,
Victor.
Hi,
Is there a way to prevent an accidental helm delete?
Regards,
Victor.
|
By
victor.buciuc@...
·
#38
·
|
|
Re: Linking external files to the values.yaml
Hi Matt,
Thank you for the advice and I will follow that. Can you place send some documentations regarding --set.
And yes we can close that GitHub issue.
Thank you,
Kavindu
Hi Matt,
Thank you for the advice and I will follow that. Can you place send some documentations regarding --set.
And yes we can close that GitHub issue.
Thank you,
Kavindu
|
By
kavindu175@...
·
#37
·
|
|
Re: Linking external files to the values.yaml
Hey Kavindu,
Up until very recently there was no way to reference files external to the helm chart asides from using invocations like `--set foo=$(cat myfile)`. However, there is a PR out there to
Hey Kavindu,
Up until very recently there was no way to reference files external to the helm chart asides from using invocations like `--set foo=$(cat myfile)`. However, there is a PR out there to
|
By
Matt Fisher <matt.fisher@...>
·
#36
·
|
|
Linking external files to the values.yaml
Hi,
Currently, I am working on deploying MySQL using helm package. In that scenario, I want to add some custom configuration files and initialization SQL file. According to the details which are
Hi,
Currently, I am working on deploying MySQL using helm package. In that scenario, I want to add some custom configuration files and initialization SQL file. According to the details which are
|
By
kavindu175@...
·
#35
·
|
|
Does helm support xpath?
Hi,
Currently, I am working on creating configMaps using helm. I am facing an issue that I cannot replace a value of xml file using xpath. I have explained my task below
I have a xml file called
Hi,
Currently, I am working on creating configMaps using helm. I am facing an issue that I cannot replace a value of xml file using xpath. I have explained my task below
I have a xml file called
|
By
kavindu175@...
·
#34
·
|
|
Add initialization sql files to helm mysql externally
Hi,
I want to deploy the mysql using helm which is mentions as this link. It is mentioned that if we want to add sql file as initialization configuration we want to add the whole content to
Hi,
I want to deploy the mysql using helm which is mentions as this link. It is mentioned that if we want to add sql file as initialization configuration we want to add the whole content to
|
By
kavindu175@...
·
#33
·
|