Merge "Fix usage of id() and super() methods in Docker apps"
This commit is contained in:
commit
df5b08864b
@ -50,7 +50,7 @@ Methods:
|
||||
deploy:
|
||||
Body:
|
||||
- $.influxDB.deploy()
|
||||
- $.super($.deploy())
|
||||
- super($, $.deploy())
|
||||
|
||||
|
||||
getContainer:
|
||||
|
@ -56,7 +56,7 @@ Methods:
|
||||
publish => false,
|
||||
redisMaster => $this.redisMaster)
|
||||
- $.redisSlave.deploy()
|
||||
- $.super($.deploy())
|
||||
- super($, $.deploy())
|
||||
|
||||
|
||||
getContainer:
|
||||
|
@ -39,7 +39,7 @@ Methods:
|
||||
deploy:
|
||||
Body:
|
||||
- $.mongodb.deploy()
|
||||
- $.super($.deploy())
|
||||
- super($, $.deploy())
|
||||
|
||||
getContainer:
|
||||
Body:
|
||||
|
@ -273,7 +273,7 @@ Methods:
|
||||
- applicationName:
|
||||
Contract: $.string().notNull()
|
||||
Body:
|
||||
- Return: format('{0}-{1}', $applicationName, $.id())
|
||||
- Return: format('{0}-{1}', $applicationName, id($))
|
||||
|
||||
|
||||
_removeApplicationEndpoints:
|
||||
@ -305,4 +305,4 @@ Methods:
|
||||
|
||||
getInternalScopeId:
|
||||
Body:
|
||||
Return: $.id()
|
||||
Return: id($)
|
||||
|
@ -305,7 +305,7 @@ Methods:
|
||||
|
||||
getInternalScopeId:
|
||||
Body:
|
||||
Return: $.kubernetesCluster.id()
|
||||
Return: id($.kubernetesCluster)
|
||||
|
||||
scalePodDown:
|
||||
Usage: Action
|
||||
|
Loading…
Reference in New Issue
Block a user