From d05a3f1f8db565674991b7aecfdc7c883a4e4cf6 Mon Sep 17 00:00:00 2001 From: Brendan Burns Date: Sun, 8 Jun 2014 21:52:49 -0700 Subject: [PATCH] Task -> Pod, more API changes. --- api/doc/controller-schema.json | 8 ++++---- api/doc/{task-schema.json => pod-schema.json} | 0 2 files changed, 4 insertions(+), 4 deletions(-) rename api/doc/{task-schema.json => pod-schema.json} (100%) diff --git a/api/doc/controller-schema.json b/api/doc/controller-schema.json index fddc9db657..7baa0eb944 100644 --- a/api/doc/controller-schema.json +++ b/api/doc/controller-schema.json @@ -2,7 +2,7 @@ "$schema": "http://json-schema.org/draft-03/schema", "type": "object", "required": false, - "description": "A replicationController resource. A replicationController helps to create and manage a set of tasks. It acts as a factory to create new tasks based on a template. It ensures that there are a specific number of tasks running. If fewer tasks are running than `replicas` then the needed tasks are generated using `podTemplate`. If more tasks are running than `replicas`, then excess tasks are deleted.", + "description": "A replicationController resource. A replicationController helps to create and manage a set of pods. It acts as a factory to create new pods based on a template. It ensures that there are a specific number of pods running. If fewer pods are running than `replicas` then the needed pods are generated using `podTemplate`. If more pods are running than `replicas`, then excess pods are deleted.", "properties": { "kind": { "type": "string", @@ -28,17 +28,17 @@ "replicas": { "type": "number", "required": false, - "description": "Number of tasks desired in the set" + "description": "Number of pods desired in the set" }, "replicasInSet": { "type": "object", "required": false, - "description": "Required labels used to identify tasks in the set" + "description": "Required labels used to identify pods in the set" }, "podTemplate": { "type": "object", "required": false, - "description": "Template from which to create new tasks, as necessary. Identical to task schema." + "description": "Template from which to create new pods, as necessary. Identical to pod schema." } } }, diff --git a/api/doc/task-schema.json b/api/doc/pod-schema.json similarity index 100% rename from api/doc/task-schema.json rename to api/doc/pod-schema.json