Vhtforums
AI Assistant
Upgrade Netdata in ...
 
Notifications
Clear all

[Solved] Upgrade Netdata in Kubernetes using Helm

1 Posts
1 Users
0 Reactions
887 Views
Brandon Lee
Posts: 690
Admin
Topic starter
Translate
English
Spanish
French
German
Italian
Portuguese
Russian
Chinese
Japanese
Korean
Arabic
Hindi
Dutch
Polish
Turkish
Vietnamese
Thai
Swedish
Danish
Finnish
Norwegian
Czech
Hungarian
Romanian
Greek
Hebrew
Indonesian
Malay
Ukrainian
Bulgarian
Croatian
Slovak
Slovenian
Serbian
Lithuanian
Latvian
Estonian
(@brandon-lee)
Member
Joined: 16 years ago
[#430]

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
see version of netdata installed using helm

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.

upgrade netdata helm in kubernetes