Last active
June 9, 2017 18:14
-
-
Save goffinet/e2104f0b494b18df1ed8fef236bdf595 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| cd | |
| cd devstack | |
| #. openrc user project | |
| #OS_PASSWORD= | |
| image=xenial-ubuntu | |
| instance_name=$1 | |
| sec-group= | |
| openstack server create \ | |
| --image $image \ | |
| --flavor ds512M \ | |
| --security-group $sec-group \ | |
| $instance_name |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment