This shows you the differences between two versions of the page.
| Both sides previous revision Previous revision Next revision | Previous revision | ||
|
khaleesi_guide [2015/04/07 22:16] Daniel Farrell [Installation] Consolidate a batch of yum installs into one command (faster to execute) |
khaleesi_guide [2015/04/07 22:23] (current) Daniel Farrell [Running Khaleesi] Proper code formatting for Khaleesi run cmd |
||
|---|---|---|---|
| Line 29: | Line 29: | ||
| <code> | <code> | ||
| - | virtualenv venv | + | virtualenv khaleesi_venv |
| - | source venv/bin/activate | + | source khaleesi_venv/bin/activate |
| pip install ansible | pip install ansible | ||
| - | cd khaleesi | + | cd khaleesi/tools/ksgen |
| - | cd tools/ksgen | + | |
| python setup.py develop | python setup.py develop | ||
| cd ../.. | cd ../.. | ||
| </code> | </code> | ||
| - | From the above you can see that "source venv/bin/activate" will activate your virtual environment. Simply use deactivate to exit. Now we need to create a default Ansible config: | + | From the above you can see that ''source khaleesi_venv/bin/activate'' will activate your virtual environment. Simply use deactivate to exit. Now we need to create a default Ansible config: |
| <code> | <code> | ||
| Line 131: | Line 130: | ||
| Now that you have Khaleesi installed and a configuration file, you are ready to rebuild your nodes. To run simply execute the following inside of your Khaleesi directory: | Now that you have Khaleesi installed and a configuration file, you are ready to rebuild your nodes. To run simply execute the following inside of your Khaleesi directory: | ||
| + | <code> | ||
| ./run.sh --use ../ksgen_settings.yml playbooks/quickstack.yml --no-logs -vv | ./run.sh --use ../ksgen_settings.yml playbooks/quickstack.yml --no-logs -vv | ||
| + | </code> | ||
| The sequence of execution is as follows: | The sequence of execution is as follows: | ||