Update doc string for api base.py

API base.py is not only for service but k8s resource, including
pod, service and replication conroller

Change-Id: Ib10a30aa443ac3486ff88f675b134220763b6c82
This commit is contained in:
Jay Lau (Guangya Liu) 2015-01-27 18:42:49 -05:00
parent 4b3712bddd
commit 98f2522e53
1 changed files with 2 additions and 2 deletions

View File

@ -48,10 +48,10 @@ class K8sResourceBase(base.APIBase):
"""Unique UUID of the bay this runs on"""
manifest_url = wtypes.text
"""URL for service file to create the service"""
"""URL for manifest file to create the k8s resource"""
manifest = wtypes.text
"""Data for service to create the service"""
"""Data for manifest to create the k8s resource"""
def _get_manifest(self):
if self.manifest is not wsme.Unset and self.manifest is not None: