summaryrefslogtreecommitdiff
path: root/plugin/executor/containerd
diff options
context:
space:
mode:
authorStephen J Day <stephen.day@docker.com>2017-12-15 14:48:31 -0800
committerStephen J Day <stephen.day@docker.com>2017-12-15 17:20:42 -0800
commit521e7eba86df25857647b93f13e5366c554e9d63 (patch)
treed19596d06517df7fe33903d87079c52f29bd8b8e /plugin/executor/containerd
parent6796e740fdcb8f446747a6b7890e71d4057b1082 (diff)
downloaddocker-521e7eba86df25857647b93f13e5366c554e9d63.tar.gz
daemon, plugin: follow containerd namespace conventions
Follow the conventions for namespace naming set out by other projects, such as linuxkit and cri-containerd. Typically, they are some sort of host name, with a subdomain describing functionality of the namespace. In the case of linuxkit, services are launched in `services.linuxkit`. In cri-containerd, pods are launched in `k8s.io`, making it clear that these are from kubernetes. Signed-off-by: Stephen J Day <stephen.day@docker.com>
Diffstat (limited to 'plugin/executor/containerd')
-rw-r--r--plugin/executor/containerd/containerd.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugin/executor/containerd/containerd.go b/plugin/executor/containerd/containerd.go
index 98394679d5..5343b858e0 100644
--- a/plugin/executor/containerd/containerd.go
+++ b/plugin/executor/containerd/containerd.go
@@ -16,7 +16,7 @@ import (
)
// PluginNamespace is the name used for the plugins namespace
-var PluginNamespace = "moby-plugins"
+var PluginNamespace = "plugins.moby"
// ExitHandler represents an object that is called when the exit event is received from containerd
type ExitHandler interface {