https://rancher.com/ logo
Title
e

elegant-article-67113

08/23/2022, 12:41 PM
Is there a way to view what install options were used on k3s after the fact?
s

sticky-summer-13450

08/23/2022, 2:23 PM
If you are running k3s on a
systemd
style system then look in the systemd service config file.
cat /etc/systemd/system/k3s.service
the line with
ExecStart
will show you the parameters being passed to the k3s executable - eg:
...
ExecStart=/usr/local/bin/k3s \
    server \
	'--disable=servicelb' \
e

elegant-article-67113

08/23/2022, 2:30 PM
Great, thanks!
👍 1
b

bland-account-99790

08/23/2022, 2:56 PM
There is also an annotation in the node that shows them
👆 2