Last active
January 3, 2016 04:18
-
-
Save z0mbix/8407613 to your computer and use it in GitHub Desktop.
Packer.io Rackspace UK cloud configuration failure
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
{ | |
"builders": | |
[ | |
{ | |
"type": "openstack", | |
"username": "", | |
"password": "", | |
"provider": "rackspace-uk", | |
"region": "LON", | |
"ssh_username": "root", | |
"image_name": "Staging Web Server", | |
"source_image": "f70ed7c7-b42e-4d77-83d8-40fa29825b85", | |
"flavor": "5" | |
} | |
], | |
"provisioners": [{ | |
"type": "shell", | |
"inline": [ | |
"yum -y update", | |
"yum install -y tmux" | |
] | |
}] | |
} | |
$ packer build -debug staging-web.json | |
Debug mode enabled. Builds will not be parallelized. | |
openstack output will be in this color. | |
Build 'openstack' errored: Expected HTTP response code [200]; got 401 instead | |
==> Some builds didn't complete successfully and had errors: | |
--> openstack: Expected HTTP response code [200]; got 401 instead | |
==> Builds finished but no artifacts were created. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment