Any of the the log files in the /var/log/neutron directory are relevant, with dhcp-agent.log, l3-agent.log, and openvswitch-agent.log being especially relevant when deploying a fresh neutron node.
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
| # | |
| # configure installation settings | |
| install | |
| cdrom | |
| lang en_US.UTF-8 | |
| keyboard us | |
| timezone UTC | |
| unsupported_hardware | |
| text # cmdline # display shell output instead of ncurses/x11 |
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
| [general] | |
| # Path to a public key to install on servers. If a usable key has not | |
| # been installed on the remote servers, the user is prompted for a | |
| # password and this key is installed so the password will not be | |
| # required again. | |
| CONFIG_SSH_KEY=/root/.ssh/id_rsa.pub | |
| # Default password to be used everywhere (overridden by passwords set | |
| # for individual services or users). |
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
| # | |
| all: up provision | |
| up: | |
| @vagrant up --no-provision | |
| provision: | |
| @vagrant provision controller |
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
| # compare two files diff ala `git diff` | |
| diff -Nau /root/answers.txt{.orig,} |
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
| # | |
| # configure installation settings | |
| install | |
| cdrom | |
| lang en_US.UTF-8 | |
| keyboard us | |
| timezone UTC | |
| unsupported_hardware | |
| text |
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
| # installation settings | |
| install | |
| cdrom | |
| lang en_US.UTF-8 | |
| keyboard us | |
| timezone UTC | |
| text | |
| skipx | |
| firstboot --disabled | |
| selinux --permissive |
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
| # installation settings | |
| install | |
| cdrom | |
| lang en_US.UTF-8 | |
| keyboard us | |
| timezone UTC | |
| text | |
| skipx | |
| firstboot --disabled | |
| selinux --permissive |
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
| #!/bin/bash | |
| CONTROLLER_IP='10.107.1.210' | |
| COMPUTE_HOSTS='10.107.1.101,10.107.1.96' | |
| # handle yum's bullshit | |
| yum update -y | |
| # install packstack | |
| yum install -y https://www.rdoproject.org/repos/rdo-release.rpm |
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
| # not sure how to structure this for now, but may as well start listing core packages | |
| brew_packages=( | |
| ansible | |
| aria2 | |
| chrome-cli | |
| gdbm # ? | |
| gettext # ? | |
| gist | |
| glib # ? | |
| gmp # ? |