From 78a8d287e9c1d9ccebadadb90f63da8bcc34e386 Mon Sep 17 00:00:00 2001 From: Kenjiro Nakayama Date: Fri, 10 Jul 2015 21:11:15 +0900 Subject: [PATCH] Comment update --- plugin/pkg/scheduler/algorithm/predicates/predicates.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugin/pkg/scheduler/algorithm/predicates/predicates.go b/plugin/pkg/scheduler/algorithm/predicates/predicates.go index eb37627956a..63bd46f6e55 100644 --- a/plugin/pkg/scheduler/algorithm/predicates/predicates.go +++ b/plugin/pkg/scheduler/algorithm/predicates/predicates.go @@ -82,7 +82,7 @@ func isVolumeConflict(volume api.Volume, pod *api.Pod) bool { // NoDiskConflict evaluates if a pod can fit due to the volumes it requests, and those that // are already mounted. Some times of volumes are mounted onto node machines. For now, these mounts // are exclusive so if there is already a volume mounted on that node, another pod can't schedule -// there. This is GCE specific for now. +// there. This is GCE and Amazon EBS specific for now. // TODO: migrate this into some per-volume specific code? func NoDiskConflict(pod *api.Pod, existingPods []*api.Pod, node string) (bool, error) { manifest := &(pod.Spec)