I have a working python program which is able to create instances on OpenStack thanks to the python-novaclient library.
Now I'd like to give a post-installation script at the creation time. I looked at the documentation of the Servers
.create()
method but it doesn't seem to be implemented.
Did anyone faced this problem?
EDIT
In Horizon, when we create an instance, there is this information next to the textarea for the post-installation script:
The "Customisation Script" field is analogous to "User Data" in other systems.
Does it mean userdata
is the parameter I need?
userdata – user data to pass to be exposed by the metadata server this can be a file type object as well or a string.
Indeed the solution is on
userdata
Here's the Python code I wrote to solve my problem: