*** xiayu has joined #openstack-astara | 00:50 | |
*** davidlenwell has quit IRC | 01:05 | |
*** davidlenwell has joined #openstack-astara | 01:07 | |
stupidnic | Okay. I got past the 500 errors on the metadata proxy. I figured out what the issue was. | 01:10 |
---|---|---|
stupidnic | I was following these instructions from adam_g: https://etherpad.openstack.org/p/astara-installation-docs | 01:10 |
stupidnic | The problem is... the ipv6_address_mode=slaac in the subnet creation | 01:10 |
stupidnic | It causes rug instance port to get an IP address other than the default fdca:3ba5:a17a:acda::1 | 01:11 |
stupidnic | Since that is hard coded in the astara-appliance as the IP address of the rug's proxy service it was throwing a 500 error when it couldn't be reached | 01:12 |
stupidnic | Removing the subnet and recreating it without a gateway and without the slaac mode made the rug get the correct IP address | 01:13 |
stupidnic | My new problem is that that metadata requests are now being proxied to the controller, however they are unable to locate the instance-id. It returns a 404 (only slightly better than a 500) | 01:14 |
stupidnic | This could be related to the code base though... as I changed code base versions in an attempt to try and address the 500 errors from before. I am going to try a fresh installation now of astara now on the stable/liberty build | 01:14 |
stupidnic | I still have the DCHP issue with security groups, but I know how to work around that now | 01:15 |
stupidnic | Thinking about the hard coded IP address issue for the metadata proxy, it might be a good idea to include the IP address of the orchestrator in the configdrive build and write it to a config file in /etc/ or something that the various processes can use as a reference | 01:18 |
*** yanghy has joined #openstack-astara | 01:34 | |
*** leonstack1 has joined #openstack-astara | 02:51 | |
*** leonstack has quit IRC | 02:52 | |
*** xiayu has quit IRC | 03:12 | |
*** leonstack1 has quit IRC | 03:13 | |
*** xiayu has joined #openstack-astara | 03:17 | |
openstackgerrit | Yang Hongyang proposed openstack/astara: trival: remove redundant code https://review.openstack.org/268849 | 03:21 |
*** leonstack has joined #openstack-astara | 03:24 | |
stupidnic | Just a heads up... I got my 404 errors on the metadata proxy sorted out as well. I had the service_metadata_proxy = True in the [DEFAULT] section of nova.conf. It needs to be in the [neutron] section. | 03:32 |
*** Liuqing has joined #openstack-astara | 03:54 | |
openstackgerrit | Yang Hongyang proposed openstack/astara: Remove unused class method https://review.openstack.org/268858 | 03:55 |
*** tangchen__ has joined #openstack-astara | 05:37 | |
*** leonstack1 has joined #openstack-astara | 05:56 | |
openstackgerrit | xiayu proposed openstack/astara: Automatically generate etc/orchestrator.ini file https://review.openstack.org/265576 | 05:56 |
*** leonstack has quit IRC | 05:58 | |
*** leonstack has joined #openstack-astara | 06:08 | |
*** leonstack1 has quit IRC | 06:10 | |
*** leonstack has quit IRC | 07:56 | |
openstackgerrit | Yang Li proposed openstack/astara: Fix a bug for default provider and add an unittest https://review.openstack.org/268085 | 10:05 |
openstackgerrit | Yang Li proposed openstack/astara: Fix a bug for default provider and add an unittest https://review.openstack.org/268085 | 10:49 |
openstackgerrit | Yang Li proposed openstack/astara: Fix a bug for default provider and add an unittest https://review.openstack.org/268085 | 11:18 |
*** phil_h has joined #openstack-astara | 13:34 | |
openstackgerrit | Yang Hongyang proposed openstack/astara-appliance: trival: deprecate assertEquals https://review.openstack.org/269055 | 13:50 |
*** Liuqing has quit IRC | 13:54 | |
openstackgerrit | Phil Hopkins proposed openstack/astara: Corrects doc to build appliance using jessie release https://review.openstack.org/269067 | 14:06 |
*** yanghy has quit IRC | 15:30 | |
*** justinlund1 has quit IRC | 17:22 | |
*** prithiv has joined #openstack-astara | 17:41 | |
*** davidlenwell has quit IRC | 18:22 | |
*** davidlenwell has joined #openstack-astara | 18:24 | |
*** prithiv has quit IRC | 19:25 | |
*** prithiv has joined #openstack-astara | 19:26 | |
*** prithiv has quit IRC | 19:26 | |
adam_g | stupidnic, hi, catching up on a bunch of backscroll from the weekend | 19:43 |
adam_g | stupidnic, a couple of things | 19:43 |
stupidnic | shoot | 19:43 |
adam_g | stupidnic, stable/liberty has all kinds of hard-coded assumptions made about addresses and subnets for the management network. we've only just started unwinding that in mitaka with a big patch stack that'll eventually need to be backported to liberty, but still hasnt landed completely in master yet | 19:44 |
adam_g | that allows the orchestrator to use an address form the mgt subnet dynamically allocated by neutron, and then passed into the appliance so the appliance knows where it should be proxy'ing metadata to | 19:44 |
stupidnic | Alright. That explains that portion of it... I am glad it is an issue that you are aware of | 19:44 |
adam_g | stupidnic, re the issues you were having with the appliance image only having /usr/local/bin/akanda-configure-management, but the orchestrator requesting astara-configure-management---that sounds like you were using the mitaka/master orchestrator against a stable/liberty appliance image | 19:46 |
stupidnic | Highly probable. A simple symlink can fix that issue. | 19:46 |
stupidnic | costs nothing | 19:46 |
adam_g | that actually work, but you need to specify 'astara_boot_command=akanda-configure-management' to support legacy | 19:47 |
adam_g | so you shouldn't need to hack in a symlink for that | 19:47 |
stupidnic | is that in the config? | 19:47 |
adam_g | ya, in the astara config | 19:47 |
stupidnic | or in the build process? | 19:47 |
stupidnic | k | 19:47 |
adam_g | also, for metadata, make sure in nova.conf's [neutron] section you have service_metadata_proxy=True to allow nova to resolve instance metadata from HTTP header's instead of SNAT | 19:48 |
adam_g | (not sure if thats in that installation doc i whipped up before) | 19:48 |
stupidnic | Yeah, I figured that out later | 19:48 |
stupidnic | It says DEFAULT | 19:48 |
stupidnic | but I might have added that and it applies to one of the config options but not the other | 19:49 |
stupidnic | On the plus side... I learned a lot about how Astara operates under the hood, as well as how it communicates. So a good training course if nothing else. | 19:53 |
stupidnic | I still have a couple of minor questions... | 19:53 |
stupidnic | One is how do I operate multiple router images? I spoke with Mark about the metadata option for injecting custom iptable rules, but I don't think that is going to be viable based on my understanding from the this weekend | 19:54 |
stupidnic | so operating multiple images might be better | 19:54 |
stupidnic | how would I accomplish something like that | 19:55 |
stupidnic | also... what is required to enable the loadbalancer portion of the astara project? I know there are some options in the orchestrator.ini file, but not sure what else would be needed | 19:55 |
*** phil_h has quit IRC | 19:58 | |
*** phil_h has joined #openstack-astara | 19:59 | |
*** phil_h has quit IRC | 20:00 | |
*** phil_h has joined #openstack-astara | 20:01 | |
phil_h | adam_g: service_metadata_proxy=True is in the docs | 20:02 |
adam_g | phil_h, ah, cool thanks | 20:02 |
adam_g | if anyone has any installation docs they'd like to convert into a patch to astara/docs/ this week for mitaka-2 it would be greatly appreciated | 20:02 |
openstackgerrit | Adam Gandelman proposed openstack/astara-horizon: Fix E501 pep8 violation https://review.openstack.org/269256 | 20:04 |
phil_h | I am working on some | 20:04 |
phil_h | I need to get them done before Friday since I am going on the road next week | 20:04 |
adam_g | phil_h, that would be great. was planning on cutting the m2 milestone tag thurs or fri | 20:05 |
phil_h | I have dos on how to install astara in a non-devstack environment | 20:05 |
adam_g | i'd *love* to have those in our official doc | 20:05 |
phil_h | so folks can use them to install astara in an package or source intall environment. | 20:06 |
phil_h | They should work on both Ubuntu and Red Hat installs | 20:06 |
adam_g | cool | 20:06 |
adam_g | reminds me that i need to finish the debian packages i was working on | 20:06 |
phil_h | I just need to convert them into rst format | 20:06 |
phil_h | I have contacted Eric about doing a joint presentation at the summit | 20:08 |
adam_g | phil_h, \o/ that'd be great | 20:08 |
*** phil_hop has joined #openstack-astara | 20:16 | |
openstackgerrit | Adam Gandelman proposed openstack/astara: Drop astara.openstack and astara.service https://review.openstack.org/267130 | 20:16 |
*** prithiv has joined #openstack-astara | 20:28 | |
*** prithiv has quit IRC | 20:28 | |
*** prithiv has joined #openstack-astara | 20:28 | |
openstackgerrit | Merged openstack/astara: Automatically generate etc/orchestrator.ini file https://review.openstack.org/265576 | 20:55 |
openstackgerrit | Merged openstack/astara-neutron: Updated from global requirements https://review.openstack.org/268428 | 20:59 |
*** justinlund has joined #openstack-astara | 21:12 | |
openstackgerrit | Merged openstack/astara: Remove unnecessary nosetest param https://review.openstack.org/267904 | 21:15 |
*** shashank_hegde has joined #openstack-astara | 21:50 | |
openstackgerrit | Adam Gandelman proposed openstack/astara: Add astara-ctl + API functional tests https://review.openstack.org/243874 | 21:52 |
openstackgerrit | Adam Gandelman proposed openstack/astara: fail func tests early (do not merge) https://review.openstack.org/266666 | 21:52 |
*** phil_hopk has joined #openstack-astara | 21:57 | |
*** smartshader has joined #openstack-astara | 22:00 | |
*** phil_hop has quit IRC | 22:01 | |
smartshader | Guys I am testing astara in a devstack environment | 22:03 |
smartshader | when I create a new router, I don't see a new VM created in instances | 22:04 |
smartshader | am I missing something? | 22:04 |
openstackgerrit | Merged openstack/astara: gate fixer: Fix devstack auth issue and new PEP8 violation https://review.openstack.org/267862 | 22:06 |
adam_g | smartshader, can you confirm astara is receiving the event notification? you should see a flury of log activity in astara's log when you create the neutron router | 22:08 |
smartshader | adam_g, here is the logs in astara.log when I create a new router http://pasted.co/762284ee | 22:15 |
adam_g | smartshader, hmm. can you also paste the resulting log output after you run 'astara-ctl workers debug'? it should dump a bunch of stuff into there, too | 22:16 |
*** phil_hop has joined #openstack-astara | 22:21 | |
*** phil_hopk has quit IRC | 22:24 | |
smartshader | adam_g, here you go http://pasted.co/473353fd btw thanks for your help I am just starting with astara | 22:26 |
adam_g | smartshader, hmm so astara's getting the message but dropping it b/c it doesnt hash to the local orchestrator in the cluster's hash ring... but debug-works shows it hasn't registered any hosts in the cluster so the hash ring is empty | 22:27 |
adam_g | 2016-01-18 22:19:13.223 INFO astara.worker:18416:p01:tmain [req-996744e9-90d5-48fe-a562-77cb4121a1e4 None None] Peer astara-orchestrator hosts: set([]) | 22:27 |
adam_g | not sure what would cause that--can you confirm memcached is up and listening? | 22:27 |
adam_g | you might restart the orchestrator and look for some errors in startup that would suggest some issue connecting to that | 22:28 |
adam_g | or, you can simply turn off all the clustering capabilities (set enabled=False in [coordination] section of config) if you dont feel like debugging this | 22:29 |
openstackgerrit | Merged openstack/astara: Corrects doc to build appliance using jessie release https://review.openstack.org/269067 | 22:29 |
openstackgerrit | OpenStack Proposal Bot proposed openstack/astara: Updated from global requirements https://review.openstack.org/268425 | 22:39 |
openstackgerrit | OpenStack Proposal Bot proposed openstack/astara-neutron: Updated from global requirements https://review.openstack.org/269315 | 22:39 |
smartshader | adam_g, thanks it is working now | 22:40 |
smartshader | I add 127.0.0.1 localhost in /etc/hosts | 22:40 |
adam_g | smartshader, ah! | 22:41 |
smartshader | memcached in orchestrator was configured as localhost:11211 and localhost was not resolvable | 22:41 |
*** phil_hopk has joined #openstack-astara | 22:56 | |
openstackgerrit | Merged openstack/astara-horizon: Fix E501 pep8 violation https://review.openstack.org/269256 | 22:57 |
*** phil_hop has quit IRC | 22:59 | |
*** phil_hop has joined #openstack-astara | 23:02 | |
*** phil_hopk has quit IRC | 23:05 | |
openstackgerrit | Merged openstack/astara: Drop astara.openstack and astara.service https://review.openstack.org/267130 | 23:05 |
*** prithiv has quit IRC | 23:09 | |
*** phil_hopk has joined #openstack-astara | 23:19 | |
*** phil_hop has quit IRC | 23:22 | |
*** davidlenwell has quit IRC | 23:38 | |
openstackgerrit | Merged openstack/astara-neutron: allow DHCP from router interfaces https://review.openstack.org/266586 | 23:44 |
*** davidlenwell has joined #openstack-astara | 23:58 |
Generated by irclog2html.py 2.14.0 by Marius Gedminas - find it at mg.pov.lt!