https://github.com/thyrlian/openstackswissknife
A Docker image contains Swiss knife tool set for managing OpenStack
https://github.com/thyrlian/openstackswissknife
docker openstack provisioning terraform
Last synced: about 2 months ago
JSON representation
A Docker image contains Swiss knife tool set for managing OpenStack
- Host: GitHub
- URL: https://github.com/thyrlian/openstackswissknife
- Owner: thyrlian
- License: mit
- Created: 2016-12-19T22:35:13.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2017-04-12T03:28:32.000Z (about 8 years ago)
- Last Synced: 2025-01-14T08:52:16.576Z (4 months ago)
- Topics: docker, openstack, provisioning, terraform
- Language: Shell
- Size: 7.81 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# OpenStackSwissKnife
A Swiss knife tool set Docker image for managing OpenStack[](https://hub.docker.com/r/thyrlian/openstack-swissknife/)
[](https://travis-ci.org/thyrlian/OpenStackSwissKnife)## What is included
* [Terraform](https://github.com/hashicorp/terraform)
* [OpenStackClient](https://github.com/openstack/python-openstackclient)
* [deprecated individual project clients](https://wiki.openstack.org/wiki/OpenStackClients) to cover the shortage of OpenStackClient## Getting Started
```console
# build the docker image
docker build -t openstack-swissknife .# run the docker container
docker run -it openstack-swissknife /bin/bash# quit the container
exit# stop and remove the container
docker stop $(docker ps -a -q) && docker rm $(docker ps -a -q)
```In order to use the OpenStackClient, you must [set the environment variables using the OpenStack RC file](http://docs.openstack.org/user-guide/common/cli-set-environment-variables-using-openstack-rc.html) first. The OpenStack RC file can be downloaded from the OpenStack Dashboard by:
**OpenStack** -> **Project** -> **COMPUTE** -> **Access & Security** -> **API Access** -> **Download OpenStack RC File**
## Useful Links
* [Terraform Commands](https://www.terraform.io/docs/commands/)
* [Terraform for OpenStack](https://www.terraform.io/docs/providers/openstack/)
* [OpenStackClient Command List](http://docs.openstack.org/developer/python-openstackclient/command-list.html)
* [OpenStack CLI cheat sheet](http://docs.openstack.org/user-guide/cli-cheat-sheet.html)## License
Copyright (c) 2016 Jing Li. It is released under the [MIT License](http://opensource.org/licenses/MIT). See the [LICENSE](https://github.com/thyrlian/OpenStackSwissKnife/blob/master/LICENSE) file for details.