Add fingerprint.

This commit is contained in:
Shishir Mahajan 2020-05-08 17:24:56 -07:00
parent f6184c3a9a
commit 509bbbf675
No known key found for this signature in database
GPG Key ID: D41782E7688DEC4A
2 changed files with 30 additions and 33 deletions

View File

@ -1,5 +1,13 @@
package containerd package containerd
func isContainerdActive() bool { import (
return true "github.com/containerd/containerd"
)
func isContainerdRunning(c *containerd.Client) (bool, error) {
return true, nil
}
func getContainerdVersion(c *containerd.Client) (string, error) {
return "1.3.3", nil
} }

View File

@ -4,9 +4,7 @@ import (
"context" "context"
"fmt" "fmt"
"os" "os"
"os/exec"
"path/filepath" "path/filepath"
"regexp"
"time" "time"
"github.com/containerd/containerd" "github.com/containerd/containerd"
@ -26,7 +24,7 @@ const (
// pluginName is the name of the plugin // pluginName is the name of the plugin
// this is used for logging and (along with the version) for uniquely // this is used for logging and (along with the version) for uniquely
// identifying plugin binaries fingerprinted by the client // identifying plugin binaries fingerprinted by the client
pluginName = "containerd-driver" pluginName = "containerd"
// pluginVersion allows the client to identify and use newer versions of // pluginVersion allows the client to identify and use newer versions of
// an installed plugin // an installed plugin
@ -264,38 +262,29 @@ func (d *Driver) buildFingerprint() *drivers.Fingerprint {
HealthDescription: drivers.DriverHealthy, HealthDescription: drivers.DriverHealthy,
} }
// Fingerprinting is used by the plugin to relay two important information isRunning, err := isContainerdRunning(d.client)
// to Nomad: health state and node attributes. if err != nil {
// d.logger.Error("Error in buildFingerprint(): failed to get containerd status: %v", err)
// If the plugin reports to be unhealthy, or doesn't send any fingerprint fp.Health = drivers.HealthStateUndetected
// data in the expected interval of time, Nomad will restart it. fp.HealthDescription = "Undetected"
// return fp
// Node attributes can be used to report any relevant information about
// the node in which the plugin is running (specific library availability,
// installed versions of a software etc.). These attributes can then be
// used by an operator to set job constrains.
shell := "bash"
cmd := exec.Command("which", shell)
if err := cmd.Run(); err != nil {
return &drivers.Fingerprint{
Health: drivers.HealthStateUndetected,
HealthDescription: fmt.Sprintf("shell %s not found", shell),
}
} }
// We also set the shell and its version as attributes if !isRunning {
cmd = exec.Command(shell, "--version") fp.Health = drivers.HealthStateUnhealthy
if out, err := cmd.Output(); err != nil { fp.HealthDescription = "Unhealthy"
d.logger.Warn("failed to find shell version: %v", err) return fp
} else {
re := regexp.MustCompile("[0-9]\\.[0-9]\\.[0-9]")
version := re.FindString(string(out))
fp.Attributes["driver.hello.shell_version"] = structs.NewStringAttribute(version)
fp.Attributes["driver.hello.shell"] = structs.NewStringAttribute(shell)
} }
// Get containerd version
version, err := getContainerdVersion(d.client)
if err != nil {
d.logger.Warn("Error in buildFingerprint(): failed to get containerd version: %v", err)
return fp
}
fp.Attributes["driver.containerd.containerd_version"] = structs.NewStringAttribute(version)
return fp return fp
} }