Remove deploy targets

These targets are no longer valid since we introduced devstack plugin
to replace ansible playbooks.

Change-Id: I0de1adc0bcb34cba3d8d090a57fa6a5ce2a22f18
This commit is contained in:
Takashi Kajinami 2024-01-07 15:05:03 +09:00
parent a67a505657
commit 4d6eac6c5c
1 changed files with 0 additions and 25 deletions

View File

@ -49,29 +49,4 @@
<!-- Overall install -->
<target name="install" depends="install_engine" />
<target name="uninstall" depends="uninstall_engine" />
<!-- Deploy -->
<!-- To execute the below tasks you must have:
(1) ansible installed
(2) hosts file configured
-->
<target name="deploy_host_engine" depends="build_engine">
<exec executable="ansible-playbook" dir="install/storlets" failonerror="true">
<arg value="-s"/>
<arg value="-i"/>
<arg value="storlets_dynamic_inventory.py"/>
<arg value="host_side_storlet_engine.yml"/>
</exec>
</target>
<target name="deploy_container_engine" depends="build_engine">
<exec executable="ansible-playbook" dir="install/storlets" failonerror="true">
<arg value="-s"/>
<arg value="-i"/>
<arg value="storlets_dynamic_inventory.py"/>
<arg value="container_storlet_engine.yml"/>
</exec>
</target>
<target name="deploy" depends="deploy_host_engine, deploy_container_engine"/>
</project>