Hi Hashicorp team,
I am looking to create a plugin for nomad and would like to get some advices regarding the way(s) around if possible. If my plugin, in short, would execute a command on the OS and take those output to populate a table under the meta attributes section table in the client’s web ui page, which files should be added/modified? So the final result would look like a 3rd table under “Attributes” and “Meta” with the data from the output of the command executed.
Thanks!
Hi @FranksRobins,
Could you explain a little more about what OS commands would be executed and what the information would be used for?
It is possible to add custom entries into a clients meta detail using the client meta config option, however, it is not possible to create a modified UI look or dynamically add these via a plugin.
Thanks,
jrasell and the Nomad team
Hi jrasell and thank you for your reply!
however, it is not possible to create a modified UI look or dynamically add these via a plugin.
Was the answer I was looking for! FYI, those commands would have be simple linux commands like ls -l to get the directories/files and their permissions. But since it is not possible to add anything to the UI from a plugin, another route should be taken.
Thank you!