Fix usage of id() and super() methods in Docker apps
Change-Id: Ieb34aee28b796adfceebca0c825d05de02cf37ac
Closes-Bug: #1593682
(cherry picked from commit 1d0fc0a3e0)
This commit is contained in:
committed by
Sergey Kraynev
parent
60f52e4af5
commit
3b233af5cb
@@ -50,7 +50,7 @@ Methods:
|
|||||||
deploy:
|
deploy:
|
||||||
Body:
|
Body:
|
||||||
- $.influxDB.deploy()
|
- $.influxDB.deploy()
|
||||||
- $.super($.deploy())
|
- super($, $.deploy())
|
||||||
|
|
||||||
|
|
||||||
getContainer:
|
getContainer:
|
||||||
|
|||||||
@@ -56,7 +56,7 @@ Methods:
|
|||||||
publish => false,
|
publish => false,
|
||||||
redisMaster => $this.redisMaster)
|
redisMaster => $this.redisMaster)
|
||||||
- $.redisSlave.deploy()
|
- $.redisSlave.deploy()
|
||||||
- $.super($.deploy())
|
- super($, $.deploy())
|
||||||
|
|
||||||
|
|
||||||
getContainer:
|
getContainer:
|
||||||
|
|||||||
@@ -39,7 +39,7 @@ Methods:
|
|||||||
deploy:
|
deploy:
|
||||||
Body:
|
Body:
|
||||||
- $.mongodb.deploy()
|
- $.mongodb.deploy()
|
||||||
- $.super($.deploy())
|
- super($, $.deploy())
|
||||||
|
|
||||||
getContainer:
|
getContainer:
|
||||||
Body:
|
Body:
|
||||||
|
|||||||
@@ -273,7 +273,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:
|
||||||
@@ -305,4 +305,4 @@ Methods:
|
|||||||
|
|
||||||
getInternalScopeId:
|
getInternalScopeId:
|
||||||
Body:
|
Body:
|
||||||
Return: $.id()
|
Return: id($)
|
||||||
|
|||||||
@@ -311,7 +311,7 @@ Methods:
|
|||||||
|
|
||||||
getInternalScopeId:
|
getInternalScopeId:
|
||||||
Body:
|
Body:
|
||||||
Return: $.kubernetesCluster.id()
|
Return: id($.kubernetesCluster)
|
||||||
|
|
||||||
scalePodDown:
|
scalePodDown:
|
||||||
Usage: Action
|
Usage: Action
|
||||||
|
|||||||
Reference in New Issue
Block a user