Web Server Using Openstack
A minimal OpenStack Python Pulumi program
This example lives in the pulumi/examples repository. Check out just this directory to use it:
git clone --filter=blob:none --sparse https://github.com/pulumi/examples pulumi-examplesgit -C pulumi-examples sparse-checkout set openstack-py-webservercd pulumi-examples/openstack-py-webserverPrerequisites#
Deploying and running the program#
-
Create a new stack:
Terminal window pulumi stack init -
Modify
__main__.pyto include your keypair and image -
Run
pulumi upto preview and deploy changes:Terminal window pulumi upPreviewing update (dev):Type Name Planpulumi:pulumi:Stack pulum-dev+ ├─ openstack:images:Image fedora create+ ├─ openstack:compute:Keypair default create+ ├─ openstack:networking:SecGroupRule secgroupRule1 create+ ├─ openstack:networking:SecGroupRule secgroupRule2 create+ ├─ openstack:networking:SecGroupRule secgroupRule3 create+ └─ openstack:compute:Instance test_fedora createOutputs:~ instance_ip: "192.168.0.243" => output<string>Resources:+ 6 to create1 unchangedResources:+ 6 created1 unchangedDuration: 38s -
View the host name and IP address of the instance via
stack output:Terminal window pulumi stack outputCurrent stack outputs (1):OUTPUT VALUEinstance_ip 192.168.0.243 -
Verify that the Openstack instance exists, by either using the Horizon dashboard or running
openstack server list.Terminal window openstack server list+--------------------------------------+-------------+--------+-------------------------------------+--------------------------+----------+| ID | Name | Status | Networks | Image | Flavor |+--------------------------------------+-------------+--------+-------------------------------------+--------------------------+----------+| 8bdf8a6d-ac53-4448-ae09-e2a08ad554a0 | test_fedora | ACTIVE | public=192.168.0.243, 2001:db8::36b | fedora | m1.small |+--------------------------------------+-------------+--------+-------------------------------------+--------------------------+----------+
Clean up#
To clean up resources, run pulumi destroy and answer the confirmation question at the prompt.