Allow to specify update manifest for armada apply
Signed-off-by: Ruslan Aliev <raliev@mirantis.com> Change-Id: I47800fad578c908fe7f8e2cda807ddc99fef5b36
This commit is contained in:
parent
fe89b5e0b1
commit
913f79145e
@ -46,6 +46,11 @@ class ArmadaPostApplyOperator(ArmadaBaseOperator):
|
|||||||
# Set up target manifest
|
# Set up target manifest
|
||||||
self.dc = self.xcom_puller.get_deployment_configuration()
|
self.dc = self.xcom_puller.get_deployment_configuration()
|
||||||
self.target_manifest = self.dc['armada.manifest']
|
self.target_manifest = self.dc['armada.manifest']
|
||||||
|
if self.action_info['name'] == 'update_software':
|
||||||
|
update_manifest = self.dc.get(
|
||||||
|
'armada.update_manifest', "").strip()
|
||||||
|
if update_manifest:
|
||||||
|
self.target_manifest = update_manifest
|
||||||
|
|
||||||
# Update query dict with information of target_manifest
|
# Update query dict with information of target_manifest
|
||||||
self.query['target_manifest'] = self.target_manifest
|
self.query['target_manifest'] = self.target_manifest
|
||||||
@ -54,7 +59,7 @@ class ArmadaPostApplyOperator(ArmadaBaseOperator):
|
|||||||
timeout = self.dc['armada.post_apply_timeout']
|
timeout = self.dc['armada.post_apply_timeout']
|
||||||
|
|
||||||
# Execute Armada Apply to install the helm charts in sequence
|
# Execute Armada Apply to install the helm charts in sequence
|
||||||
LOG.info("Armada Apply")
|
LOG.info("Armada Apply, target manifest: ", self.target_manifest)
|
||||||
|
|
||||||
try:
|
try:
|
||||||
armada_post_apply = self.armada_client.post_apply(
|
armada_post_apply = self.armada_client.post_apply(
|
||||||
|
Loading…
x
Reference in New Issue
Block a user