McLan
McLan

Reputation: 2678

Does K0s support Helm v.3?

I am trying to use helm charts with k0s.

Having my own helm-charts app, I would like to create a local repo. But I cannot use the serve command since I am using version: 3.5.4 and the serve command had been ditched for security concerns.

I am not sure now how to create a local repo ? and where can I find tutorials or examples ?

Also, how to deploy my chart in k0s cluster ?

Upvotes: 1

Views: 541

Answers (2)

createrofallcreations
createrofallcreations

Reputation: 11

Yes it does, you can also utilize k8slens.dev to easily deploy helm charts to your Kubernetes clusters. Regardless of the distro..

Upvotes: 1

Rico
Rico

Reputation: 61561

I would try to use ChartMuseum instead. You can follow the docs to create a local filesystem chart.

You simply deploy the same way as with helm v2. Make sure you add the chart repo and you have kubectl configured to point to the cluster that you want to talk to so that ~/.kube/config has the right configuration.

Upvotes: 2

Related Questions