Fix usage of id() and super() methods in Docker apps

Change-Id: Ieb34aee28b796adfceebca0c825d05de02cf37ac
Closes-Bug: #1593682
This commit is contained in:
Tetiana Lashchova
2016-06-17 14:32:06 +03:00
parent 2bbc0f8936
commit 1d0fc0a3e0
5 changed files with 6 additions and 6 deletions

View File

@@ -49,7 +49,7 @@ Methods:
deploy: deploy:
Body: Body:
- $.influxDB.deploy() - $.influxDB.deploy()
- $.super($.deploy()) - super($, $.deploy())
getContainer: getContainer:

View File

@@ -55,7 +55,7 @@ Methods:
publish => false, publish => false,
redisMaster => $this.redisMaster) redisMaster => $this.redisMaster)
- $.redisSlave.deploy() - $.redisSlave.deploy()
- $.super($.deploy()) - super($, $.deploy())
getContainer: getContainer:

View File

@@ -38,7 +38,7 @@ Methods:
deploy: deploy:
Body: Body:
- $.mongodb.deploy() - $.mongodb.deploy()
- $.super($.deploy()) - super($, $.deploy())
getContainer: getContainer:
Body: Body:

View File

@@ -272,7 +272,7 @@ Methods:
- applicationName: - applicationName:
Contract: $.string().notNull() Contract: $.string().notNull()
Body: Body:
- Return: format('{0}-{1}', $applicationName, $.id()) - Return: format('{0}-{1}', $applicationName, id($))
_removeApplicationEndpoints: _removeApplicationEndpoints:
@@ -304,4 +304,4 @@ Methods:
getInternalScopeId: getInternalScopeId:
Body: Body:
Return: $.id() Return: id($)

View File

@@ -305,7 +305,7 @@ Methods:
getInternalScopeId: getInternalScopeId:
Body: Body:
Return: $.kubernetesCluster.id() Return: id($.kubernetesCluster)
scalePodDown: scalePodDown:
Usage: Action Usage: Action