I'm wondering; after installing the first node of ...
# harvester
a
I'm wondering; after installing the first node of a Harvester cluster, can I use something like a
HelmChartConfig
(that gets saved in
/var/lib/rancher/rke2/server/manifests
through a
<http://CloudInit.node.harvesterhci.io/v1beta1|CloudInit.node.harvesterhci.io/v1beta1>
resource) to configure Longhorn's settings? When checking, Longhorn's pods are installed through helm (
kubectl get pod -n longhorn-system <podname> -oyaml
shows annotations regarding helm), but I see nothing Longhorn related when I list helm releases with
helm list -A
m
you can change the LH helm settings by updating the
fleet-local/harvester
managed chart:
Copy code
k -n fleet-local get managedchart harvester -ojsonpath='{.spec.values.longhorn}'
a
Thanks, I'll look into it
So I could also make changes through the file
/var/lib/rancher/rke2/server/manifests/rancher/managed-chart-config.yaml
? Though it seems to be an empty file by default...