seaweedfs / seaweedfs-csi-driver

SeaweedFS CSI Driver https://github.com/seaweedfs/seaweedfs
Apache License 2.0
218 stars 50 forks source link

How to install the driver without helm? #137

Closed SuperJMN closed 8 months ago

SuperJMN commented 1 year ago

I prefer not to use helm. Is there a workflow to do this kind of installation?

Thanks.

Jackbennett commented 11 months ago

You could use helm template to get the yaml generated once and never use helm again. Modify that yaml as you like from there.

You can use that yaml directly or something like flux, argo and kustomize.

achetronic commented 10 months ago

@SuperJMN Another possibility is using kustomize (it's integrated on kubectl) to generate the manifests as @Jackbennett suggested but using a kustomization.yaml, instead of helm directly:

https://github.com/kubernetes-sigs/kustomize/blob/master/examples/chart.md

basically generate a kustomization.yaml file with that spec as seen in the sample and then kubectl kustomize . | kubectl apply -f -

bmm-alc commented 8 months ago

this issue could be closed no ?