If you are running netdata to monitor your Kubernetes cluster, how do you upgrade it when the agent version needs upgraded? Note the following steps to upgrade your netdata agent deployment in Kubernetes.
Check the version of netdata that is installed. If you want to see what version is currently installed, run this command. Replace "netdata" with the namespace you have netdata installed in.
helm list -n netdata
Update your helm repos to the latest versions:
helm repo update
To upgrade netdata to the latest after updating your helm repo, run the command:
helm upgrade <release-name> netdata/netdata -n <namespace> --reuse-values
Below I have replaced with the appropriate values for netdata in my environment. Also, in a microk8s cluster, so need to add the "microk8s" in front of helm.