Closed john-kheir closed 6 years ago
@john-kheir, I think the service acc1
is still running, uninstalling doesn't stop the service from running.
So if you run the following for the second install bp
...
- template: github.com/openvcloud/0-templates/account/0.0.1
actions: ['install']
...
It will run install for both __acc1
and __acc2
If you only want to invoke install on acc2
you should specify the service name in the actions:
...
- template: github.com/openvcloud/0-templates/account/0.0.1
service: acc2
actions: ['install']
...
Edit: realized this is what you did on the second install bp from your description.
@john-kheir, I was not able to reproduce it Can you try again with current code?
doesn't happen anymore
Scenario
1- Create a blueprint to create acc1 and vdc1
2- Change actions to uninstall and run the bp again, acc1 and vdc1 should be uninstalled 3- Change the account name to acc2 and specify a "service=acc2" in actions section under account , and run the blueprint.
Actual Result
acc1 will be created again while it shouldn't be created.