This shows you the differences between two versions of the page.
Both sides previous revision Previous revision Next revision | Previous revision | ||
releases:arno:faq [2015/07/22 18:52] Tim Rozet |
releases:arno:faq [2015/08/03 22:40] (current) Pratap Ramamurthy |
||
---|---|---|---|
Line 14: | Line 14: | ||
* I get the following error: Failed to parse inline template: no implicit conversion from nil to integer at /usr/share/openstack-foreman-installer/puppet/modules/quickstack/manifests/pacemaker/rabbitmq.pp:17, what does this mean? | * I get the following error: Failed to parse inline template: no implicit conversion from nil to integer at /usr/share/openstack-foreman-installer/puppet/modules/quickstack/manifests/pacemaker/rabbitmq.pp:17, what does this mean? | ||
* This means there is a conflict between the private IP being handed to the controllers vs. the IPs the controllers should have had. If you check Foreman global paramter controllers_ip_array you will see the IPs the controllers should have. If the IP of your controller is not in that array then that is why you are getting that error. Please check the MAC address you defined in your ksgen_settings.yml file matches the private_mac of the controller in question. | * This means there is a conflict between the private IP being handed to the controllers vs. the IPs the controllers should have had. If you check Foreman global paramter controllers_ip_array you will see the IPs the controllers should have. If the IP of your controller is not in that array then that is why you are getting that error. Please check the MAC address you defined in your ksgen_settings.yml file matches the private_mac of the controller in question. | ||
+ | |||
+ | * On a virtual install, my compute node has been created, but it is too small to do anything but run a cirros or two. How can I make it bigger? | ||
+ | * Before running deploy.sh, add the else/fi section below to where it edits the Vagrantfile and sets the size for controller nodes. It will now do the same for compute nodes. Size can be set to what you think your host machine can handle. In this case it's 16 GB memory and 8 CPUs. | ||
+ | |||
+ | if [ "$node_type" == "controller" ]; then | ||
+ | sed -i 's/^.vb.memory =.$/ vb.memory = 4096/' Vagrantfile | ||
+ | else | ||
+ | sed -i 's/^.vb.memory =.$/ vb.memory = 16384/' Vagrantfile | ||
+ | sed -i 's/^.vb.cpus =.$/ vb.cpus = 8/' Vagrantfile | ||
+ | fi | ||
* One or more of my nova instances do not get a DHCP IP | * One or more of my nova instances do not get a DHCP IP | ||
* This is a problem where the neutron dhcp agent does not get updated correctly when a new instance spawns. A workaround is to create a neutron router and attach a port to the subnet before you spawn instances or dhcp server. | * This is a problem where the neutron dhcp agent does not get updated correctly when a new instance spawns. A workaround is to create a neutron router and attach a port to the subnet before you spawn instances or dhcp server. | ||
+ | |||
+ | * I have an instance running, but how to I ssh into it? | ||
+ | * Guest systems are typically run in their own Network Name Spaces. You will need to reference the name space when invoking ssh. Once you have created a network and added an instance to it, you can find the namespace, and then use it to do the ssh in that namespace. From the controller: | ||
+ | |||
+ | > ip netns list | ||
+ | qdhcp-3890e717-7712-471f-bfca-faf60737b4f5 | ||
+ | | ||
+ | > ip netns exec qdhcp-3890e717-7712-471f-bfca-faf60737b4f5 ssh cirros@10.0.0.5 | ||
+ | cirros > | ||
+ | |||
+ | * I installed the ISO but could not find the bgs_demo directory. | ||
+ | * You need to git clone | ||
+ | |||
+ | git clone https://gerrit.opnfv.org/gerrit/genesis | ||
+ | cd genesis/foreman/ci | ||
+ | |||
+ | * How do I configure static ip ranges to be used by ARNO | ||
+ | |||
+ | ./deploy.sh -virtual -static_ip_range <your_range> -base_config <fullpath topwd>/opnfv_ksgen_settings_no_HA.yml | ||
+ | | ||
+ | OR FOR HA: | ||
+ | ./deploy.sh -virtual -static_ip_range <your_range> | ||
+ | Where <your_range> is a continous block of public IP addresses you can use. Ex: 192.168.1.101,192.168.1.120 | ||
+ | | ||
+ | |||
+ | * How many NICs do I need for a completely virtual installation? | ||
+ | * You only need 1 NIC card with virtual (ensure it has internet access). | ||
+ |