Fixes.
This commit is contained in:
parent
f7e7f50c6e
commit
74716f2f71
@ -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.
|
||||
|
@ -1,7 +1,7 @@
|
||||
log_level = "TRACE"
|
||||
log_level = "INFO"
|
||||
|
||||
plugin "hello-driver" {
|
||||
plugin "containerd-driver" {
|
||||
config {
|
||||
shell = "bash"
|
||||
enabled = true
|
||||
}
|
||||
}
|
||||
|
@ -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
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user