Merge "[Trivialfix]Fix typos in qinling"

This commit is contained in:
Jenkins 2017-08-14 02:43:53 +00:00 committed by Gerrit Code Review
commit c461df4565
2 changed files with 3 additions and 3 deletions

View File

@ -102,7 +102,7 @@ STORAGE_GROUP = 'storage'
storage_opts = [
cfg.StrOpt(
'file_system_dir',
help='Directory to store funtion packages.'
help='Directory to store function packages.'
),
cfg.StrOpt(
'provider',

View File

@ -238,7 +238,7 @@ class KubernetesManager(base.OrchestratorBase):
LOG.debug('Labels updated for pod %s', name)
# Create service for the choosen pod.
# Create service for the chosen pod.
service_name = "service-%s" % function_id
labels.update({'function_id': function_id})
service_body = self.service_template.render(
@ -258,7 +258,7 @@ class KubernetesManager(base.OrchestratorBase):
name, service_name, node_port
)
# Get external ip address for an arbitary node.
# Get external ip address for an arbitrary node.
ret = self.v1.list_node()
addresses = ret.items[0].status.addresses
node_ip = None