Last active
January 31, 2017 07:52
-
-
Save rpromyshlennikov/ff4c9f8d9ed267469fdd164224438b8c to your computer and use it in GitHub Desktop.
Create private network, nanoflavor and cirros instance
This file contains 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/sh | |
source openrc | |
nova flavor-create m1.nano 42 64 0 1 | |
neutron net-create internal001; neutron subnet-create --name internal001 internal001 192.168.200.0/24 | |
nova boot --flavor m1.nano --image cirros64 --nic net-name=internal001 cirros_server |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment