plugin/nomad: Add a Nomad plugin (#7467)

Signed-off-by: Olli Janatuinen <olli.janatuinen@gmail.com>
This commit is contained in:
Olli Janatuinen
2025-09-30 18:35:32 +02:00
committed by GitHub
parent bc6e015a37
commit 83ce0baeac
14 changed files with 1274 additions and 0 deletions

9
plugin/nomad/ready.go Normal file
View File

@@ -0,0 +1,9 @@
package nomad
// Ready signals when the plugin is ready for use.
// In case of Nomad, when the ping to the Nomad API is successful
// the plugin is ready.
func (n Nomad) Ready() bool {
client, _ := n.getClient()
return client != nil
}