1

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 ?

McLan
  • 2,552
  • 9
  • 51
  • 85

2 Answers2

1

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.

Rico
  • 58,485
  • 12
  • 111
  • 141
  • I merely need to have a local system directory where my charts could be loaded from it. ChartMuseum is a good option indeed but it lack any examples or tutorials. The link you put is very short in description. But thanks anyway. I fyou could direct me to an example it would be appreicate it – McLan May 06 '21 at 12:29
  • it does have a guide: https://chartmuseum.com/docs/#installing-chartsinto-kubernetes – Rico May 06 '21 at 20:00
1

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

  • I am working on Linux so the graphical interface would be wasted. Still a good solution for deployments – McLan May 06 '21 at 12:25