This commit is contained in:
Shishir Mahajan 2020-05-12 13:06:51 -07:00
parent f7e7f50c6e
commit 74716f2f71
No known key found for this signature in database
GPG Key ID: D41782E7688DEC4A
3 changed files with 16 additions and 11 deletions

View File

@ -24,7 +24,7 @@ const (
// pluginName is the name of the plugin
// this is used for logging and (along with the version) for uniquely
// identifying plugin binaries fingerprinted by the client
pluginName = "nomad-driver-containerd"
pluginName = "containerd-driver"
// pluginVersion allows the client to identify and use newer versions of
// an installed plugin
@ -144,8 +144,6 @@ func NewPlugin(logger log.Logger) drivers.DriverPlugin {
return nil
}
defer client.Close()
// Calls to containerd API are namespaced.
// "nomad" is the namespace that will be used for all nomad-driver-containerd
// related containerd API calls.

View File

@ -1,7 +1,7 @@
log_level = "TRACE"
log_level = "INFO"
plugin "hello-driver" {
plugin "containerd-driver" {
config {
shell = "bash"
enabled = true
}
}

View File

@ -1,13 +1,20 @@
job "example" {
datacenters = ["dc1"]
type = "batch"
group "example" {
task "hello-world" {
driver = "hello-world-example"
group "cache" {
task "redis" {
driver = "containerd-driver"
config {
greeting = "hello"
image = "docker.io/library/redis:alpine"
}
resources {
cpu = 500
memory = 256
network {
mbits = 10
}
}
}
}