mordred | kfox1111: it's a local caching dns resolver that we put in to mitigate dns resolution differences across clouds | 00:03 |
---|---|---|
*** asettle has joined #openstack-infra | 00:03 | |
kfox1111 | its causing issues with kuberntees I think. | 00:03 |
kfox1111 | kubernetes is able to resolve internaly but when it goes to resolve externally, it reads 127.0.0.1 out of the local resolv.conf and then cant talk to the caching server. :/ | 00:03 |
*** baoli has joined #openstack-infra | 00:04 | |
kfox1111 | as the 127.0.0.1 in the container is different then the system one. :/ | 00:04 |
kfox1111 | is there an easy way to disable it? | 00:04 |
kfox1111 | or alternately, if I could rebind it to the network address that would work too? | 00:05 |
mordred | that might be a better choice | 00:05 |
mordred | (also, fascinating :) ) | 00:05 |
kfox1111 | not sure how to update resolv.conf to have it not use 127.0.0.1 though. | 00:06 |
kfox1111 | I could just overwrite it, but not sure if a dhcp renew would overwrite it. | 00:06 |
kfox1111 | the job only can ever run for an hour though, so if renew is always longer then that, we're probably safe. | 00:07 |
mordred | we write those ourselves, so if dhcp were replacing them it would screw the gate pretty epically | 00:07 |
*** asettle has quit IRC | 00:08 | |
mordred | so - yeah - you could totally overwrite the file | 00:08 |
*** lindycoder has quit IRC | 00:08 | |
kfox1111 | ok. cool. so then I just need to update unbound to listen to all ip's, and poke in eth0's ip into the resolv.conf. | 00:09 |
kfox1111 | thanks. :) | 00:09 |
mordred | yup! good luck! | 00:09 |
*** rcernin has quit IRC | 00:10 | |
kfox1111 | oh. one more quick thing. | 00:12 |
kfox1111 | is there an easy way to get the local machine's private ip address? | 00:12 |
mordred | well.... | 00:12 |
*** askb has joined #openstack-infra | 00:12 | |
*** baoli has quit IRC | 00:13 | |
mordred | there is not necessarily a private ip | 00:13 |
mordred | some machines have a private, some do not | 00:13 |
kfox1111 | some ip I guess. doesn't really matter which, so long as it uniqueliy identifies the machine. | 00:14 |
kfox1111 | from somethign running on a bridge on the same machine. | 00:14 |
mordred | yes. that we write to a file - one sec | 00:14 |
mordred | kfox1111: /etc/nodepool/primary_node | 00:15 |
mordred | if it has a public and a private, the private will be in /etc/nodepool/primary_node_private | 00:15 |
kfox1111 | k. just a text file with the ip? | 00:15 |
mordred | (and if it doesn't, the public will be in /etc/nodepool/primary_node_private) | 00:15 |
mordred | yah | 00:15 |
mordred | mordred@ubuntu-xenial-ovh-bhs1-6097774:~$ cat /etc/nodepool/primary_node_private | 00:15 |
mordred | 158.69.88.156 | 00:15 |
kfox1111 | cool. thanks. | 00:15 |
mordred | for instance | 00:15 |
mordred | sure nuff! | 00:15 |
kfox1111 | sudo sed -i "s/127\.0\.0\.1/$(cat /etc/nodepool/primary_node)/" /etc/resolv.conf :) | 00:16 |
mordred | nice | 00:16 |
*** thorst has joined #openstack-infra | 00:16 | |
kfox1111 | lets see if it works... | 00:16 |
kfox1111 | zuul's nice and empty so things are going really fast right now. :) | 00:16 |
mordred | kfox1111: fwiw, I just tried that on the machine I'd grabbed and it hangs | 00:17 |
kfox1111 | hmm... | 00:18 |
kfox1111 | did you update the interface and access control list of unbound? | 00:18 |
mordred | I did not | 00:18 |
kfox1111 | https://review.openstack.org/#/c/408263/36/tools/setup_gate.sh | 00:18 |
clarkb | so a better way to solve that eould be to forward tcp and udp 53 to the host | 00:19 |
clarkb | because we put that there for a reason and circumventing it means you likely have jobs fail | 00:20 |
kfox1111 | sudo cat /etc/resolv.conf | 00:20 |
kfox1111 | 2016-12-11 00:18:56.398342 | nameserver 2001:4800:1ae1:18:f816:3eff:fe53:2e1c | 00:20 |
kfox1111 | hmm... | 00:20 |
kfox1111 | not quite. :/ | 00:20 |
kfox1111 | clarkb: I can't easy control that. | 00:20 |
clarkb | you should not make it resolv on public interfaves | 00:20 |
clarkb | thats how ddos happens | 00:20 |
kfox1111 | kubernetes reads /etc/resolv.conf itself. :/ | 00:20 |
mordred | yah - also - the thing in primary_node will be the floating ip if the machien has a floating up | 00:20 |
kfox1111 | clarkb: the firewall shoudl still block it though. | 00:21 |
kfox1111 | I slid in particular rules to allow docker to access services. | 00:21 |
clarkb | which woukd prevent your containers from using it | 00:21 |
kfox1111 | but the standard firewall should still be there. | 00:21 |
kfox1111 | I need a v4 address... | 00:22 |
clarkb | you need to open stuff up and I am saying thats nit a great idea. also that seems like a major kubernetes issue if this is their dns setup | 00:22 |
openstackgerrit | Dan Prince proposed openstack-infra/tripleo-ci: Disable the ceilo swift pipeline for multinode https://review.openstack.org/409483 | 00:22 |
clarkb | all yhe major distros setup a local resolver last I checked | 00:22 |
*** thorst has quit IRC | 00:22 | |
kfox1111 | clarkb: they do not assume your doing something weird like putting a dns server of your own on 127.0.0.1. :/ | 00:22 |
kfox1111 | but it would be good if they did provide a way to override it instead of assuming /etc/resolv.conf will work for container. :/ | 00:22 |
clarkb | thats exactly ehat eg ubuntu do though | 00:22 |
mordred | kfox1111: it's not that weird - my laptop has 127.0.0.1 in resolv.conf | 00:22 |
kfox1111 | that may be more of a docker issue though. | 00:23 |
clarkb | mordred: yes exactly | 00:23 |
kfox1111 | mordred: much more common on desktops then servers. | 00:23 |
mordred | kfox1111: but yes - they shoudl allow it to be overridden | 00:23 |
kfox1111 | at any rate, I don't control docker, kubernetes, or kubeadm. | 00:23 |
kfox1111 | so there are 3 layers to fix. :/ | 00:23 |
mordred | kfox1111: literally all of our servers have 127.0.0.1 in their /etc/resolv.conf :) | 00:23 |
clarkb | docker does let you do nat though | 00:23 |
kfox1111 | so... plan b... | 00:23 |
clarkb | which us how I would fix this | 00:23 |
kfox1111 | maybe I just setup a bridge, and put an ip on it. | 00:24 |
clarkb | nat container localhost 53 to host 53 tcp and udp | 00:24 |
kfox1111 | clarkb: I don't control iptables in the containers. | 00:24 |
kfox1111 | no way to hook in there. | 00:24 |
* mordred goes back to preparing alcohol | 00:24 | |
clarkb | docker dies though right? | 00:24 |
clarkb | er does | 00:24 |
kfox1111 | within a docker container that isn't net=host, | 00:24 |
clarkb | last time I used docker I definitely did this | 00:24 |
clarkb | for http | 00:24 |
kfox1111 | hostname kubernetes works | 00:25 |
kfox1111 | hostname google.com doesnt | 00:25 |
clarkb | wait are you net=host? | 00:25 |
kfox1111 | its complicated. :/ | 00:25 |
clarkb | if so then it should just work | 00:25 |
kfox1111 | clarkb: for somet things. | 00:25 |
kfox1111 | those things work. | 00:25 |
kfox1111 | the non net=host ones fail. | 00:25 |
clarkb | ok good because thats ehat I would expect with net=host | 00:25 |
kfox1111 | maybe I'll just grab the ipv4 address of of the first interface found thats not lo. | 00:26 |
*** benj_ has quit IRC | 00:27 | |
kfox1111 | ip a | grep '^[0-9]' | awk '{print $2}' | sed 's/://' | grep -v lo | head -n 1 | 00:28 |
*** tphummel has quit IRC | 00:28 | |
clarkb | for the things that are not net = host can you nat 53? | 00:28 |
kfox1111 | how nat? | 00:28 |
kfox1111 | the resolve points to 127.0.0.1 | 00:28 |
kfox1111 | so you would need a rewrite rule, in the container itself, to point to a address on the host | 00:28 |
kfox1111 | that isnt 127.0.0.1. | 00:28 |
*** spzala has joined #openstack-infra | 00:29 | |
*** tphummel has joined #openstack-infra | 00:29 | |
kfox1111 | which is much harder then just changing /etc/resolv.conf to have that address. | 00:29 |
*** spzala has quit IRC | 00:30 | |
*** spzala has joined #openstack-infra | 00:30 | |
mordred | yah - the general problem is that docker bind-mounts /etc/resolv.conf from the host into the container | 00:31 |
clarkb | the problem with ^ is that wedont actually garuntee an ipv4 addr | 00:31 |
clarkb | so yes you cando that and it will work today | 00:31 |
kfox1111 | hmm.... | 00:31 |
kfox1111 | k. | 00:31 |
clarkb | then 3 months frkm now it stops | 00:31 |
kfox1111 | then I'll have to force one. | 00:31 |
*** benj_ has joined #openstack-infra | 00:32 | |
*** spzala has quit IRC | 00:32 | |
*** spzala has joined #openstack-infra | 00:33 | |
kfox1111 | adding a linux bridge and stickign an ip on it shoudl be easy enough. | 00:33 |
*** knangia has quit IRC | 00:34 | |
*** EricGonczer_ has quit IRC | 00:35 | |
clarkb | ya so attaching an ip yourself if otherwise not present would deal with that | 00:35 |
clarkb | reading docker docs they actually host their own resolver that resolves docker names and uaes host resolver for other names | 00:36 |
clarkb | odd that it would run relative to the container in that case if they want to use the hosts resolver | 00:36 |
kfox1111 | kubernetes also has its own resolver. as they do service discovery. | 00:37 |
kfox1111 | so not sure if it reuses that part or not. | 00:37 |
clarkb | which is fine,its the second part of assuming host resolver is fine when resolved against not relativeto host | 00:37 |
kfox1111 | they seem to be able to detect that and work around it, | 00:38 |
kfox1111 | but for some reason, they don't with unbound. | 00:38 |
clarkb | kfox1111: due to the way linux treats 127.0.0.0/8 I wonder if you could just tell it the dns server is 127.0.1.1 | 00:42 |
clarkb | or anything else in the /8 (probably depends o whether or not unbound is that discerning) | 00:42 |
clarkb | --dns=127.1.1.1 | 00:43 |
clarkb | actually unbou d would ha e to bind that nevermind | 00:43 |
kfox1111 | hmm... that might work. | 00:44 |
clarkb | so maybe we put unbound on weirder 127.0.0.0/8 addresstoo or something | 00:44 |
kfox1111 | though lo has the /8 | 00:45 |
kfox1111 | so would have to shrink it maybe. | 00:45 |
kfox1111 | and not sure I can do that inside the containers. | 00:45 |
kfox1111 | otherwise the container would see the address and route it to lo in the container. which woudl go nowhere. | 00:45 |
clarkb | ya | 00:45 |
kfox1111 | the bridge idea seems to be going now... | 00:46 |
kfox1111 | 408263,39 in zuul. ubuntu entry. | 00:46 |
kfox1111 | I don't have v6 support so can't watch it. | 00:46 |
kfox1111 | will konw for sure in about 10 min I think. | 00:48 |
kfox1111 | hmm... | 00:49 |
clarkb | on further reading docker docs say the localhost nameserver entries willbe removed | 00:50 |
kfox1111 | still failed. :/ | 00:50 |
clarkb | if there are no more nameservers after filtering then google will be used | 00:50 |
kfox1111 | http://logs.openstack.org/63/408263/39/check/gate-kolla-kubernetes-deploy-ubuntu-binary-ceph-nv/bc3fd78/logs/pods/default-test-dns-ubuntu-xenial-osic-cloud1-s3500-6098094-fbuql-main.txt | 00:50 |
*** Sukhdev has joined #openstack-infra | 00:50 | |
clarkb | and if you need to use a local resolver you must modify your resolver to listen on not localhost | 00:51 |
clarkb | so I would expect this to work by hitting google | 00:51 |
clarkb | reading that I think wr can have our unbound servers listen on * and have firewall rules that allow "local" packets. but that wont ensure there is non lo ipv4 | 00:54 |
kfox1111 | clarkb: here's what I got so far: https://review.openstack.org/#/c/408263/40/tools/setup_gate.sh | 00:55 |
clarkb | (also glean does unset the local resolver in some cases iirc. wee dns) | 00:57 |
*** hurgleburgler has quit IRC | 00:59 | |
*** sdake_ has joined #openstack-infra | 01:06 | |
*** ricardoas has quit IRC | 01:06 | |
*** mrtenio has quit IRC | 01:07 | |
*** clenimar has quit IRC | 01:07 | |
kfox1111 | looks like we have a winner. :) | 01:09 |
kfox1111 | 408263,41 ubuntu job. | 01:09 |
*** sdake has quit IRC | 01:09 | |
mordred | woot! | 01:12 |
kfox1111 | passed. thanks for the help. :) | 01:12 |
*** vaidy has quit IRC | 01:13 | |
*** isviridov_away has quit IRC | 01:13 | |
*** yamamoto has joined #openstack-infra | 01:14 | |
*** watanabe_isao has joined #openstack-infra | 01:14 | |
*** watanabe_isao has quit IRC | 01:14 | |
*** thorst has joined #openstack-infra | 01:19 | |
*** thorst has quit IRC | 01:27 | |
*** jeblair has joined #openstack-infra | 01:31 | |
*** sdake_ has quit IRC | 01:37 | |
*** nadya has joined #openstack-infra | 01:46 | |
*** nadya has quit IRC | 01:51 | |
*** emerson has quit IRC | 01:59 | |
*** emerson has joined #openstack-infra | 01:59 | |
*** winggundamth_ has joined #openstack-infra | 02:04 | |
*** thorst has joined #openstack-infra | 02:05 | |
*** thorst has quit IRC | 02:06 | |
*** thorst has joined #openstack-infra | 02:07 | |
*** claudiub|2 has quit IRC | 02:09 | |
*** amotoki has joined #openstack-infra | 02:10 | |
*** mountpoint has joined #openstack-infra | 02:11 | |
*** jeckersb_gone is now known as jeckersb | 02:11 | |
*** M-docaedo_vector has joined #openstack-infra | 02:14 | |
*** mountpoint has quit IRC | 02:15 | |
*** thorst has quit IRC | 02:15 | |
*** spzala has quit IRC | 02:18 | |
*** spzala has joined #openstack-infra | 02:19 | |
*** mountpoint has joined #openstack-infra | 02:19 | |
*** Julien-zte has quit IRC | 02:31 | |
*** Julien-z_ has joined #openstack-infra | 02:31 | |
*** Jeffrey4l_ has quit IRC | 02:33 | |
*** mountpoint has quit IRC | 02:34 | |
*** vaidy has joined #openstack-infra | 02:36 | |
*** mountpoint has joined #openstack-infra | 02:37 | |
*** isviridov_away has joined #openstack-infra | 02:37 | |
*** gouthamr has joined #openstack-infra | 02:42 | |
*** Julien-z_ has quit IRC | 02:45 | |
*** Julien-zte has joined #openstack-infra | 02:50 | |
*** lVathan[m] has joined #openstack-infra | 02:54 | |
*** mountpoint has quit IRC | 02:55 | |
*** mountpoint has joined #openstack-infra | 02:57 | |
*** mountpoint has quit IRC | 02:57 | |
*** Jeffrey4l has joined #openstack-infra | 03:01 | |
*** Jeffrey4l has quit IRC | 03:09 | |
*** thorst has joined #openstack-infra | 03:13 | |
*** kzaitsev_mb has joined #openstack-infra | 03:17 | |
*** thorst has quit IRC | 03:19 | |
*** thorst has joined #openstack-infra | 03:19 | |
*** spzala has quit IRC | 03:19 | |
*** amotoki has quit IRC | 03:20 | |
*** spzala has joined #openstack-infra | 03:20 | |
*** thorst has quit IRC | 03:21 | |
*** sdake has joined #openstack-infra | 03:29 | |
*** gouthamr has quit IRC | 03:29 | |
*** gmann_ has joined #openstack-infra | 03:29 | |
*** sambetts|pto has quit IRC | 03:34 | |
*** liusheng has quit IRC | 03:35 | |
*** sambetts_ has joined #openstack-infra | 03:35 | |
*** liusheng has joined #openstack-infra | 03:36 | |
*** gouthamr_ has joined #openstack-infra | 03:47 | |
*** nadya has joined #openstack-infra | 03:47 | |
*** nadya has quit IRC | 03:52 | |
*** kzaitsev_mb has quit IRC | 03:53 | |
*** Goneri has joined #openstack-infra | 03:58 | |
*** hurgleburgler has joined #openstack-infra | 04:07 | |
*** rbuzatu has joined #openstack-infra | 04:08 | |
*** dave-mccowan has joined #openstack-infra | 04:09 | |
*** dave-mcc_ has joined #openstack-infra | 04:12 | |
*** rbuzatu has quit IRC | 04:13 | |
*** dave-mccowan has quit IRC | 04:15 | |
*** amotoki has joined #openstack-infra | 04:20 | |
*** thorst has joined #openstack-infra | 04:21 | |
*** Goneri has quit IRC | 04:21 | |
*** spzala has quit IRC | 04:22 | |
*** spzala has joined #openstack-infra | 04:23 | |
*** amotoki has quit IRC | 04:26 | |
*** lindycoder has joined #openstack-infra | 04:27 | |
*** thorst has quit IRC | 04:30 | |
*** dave-mcc_ has quit IRC | 04:36 | |
*** lindycoder has quit IRC | 04:39 | |
*** sdake has quit IRC | 04:45 | |
*** nadya has joined #openstack-infra | 04:47 | |
*** gouthamr_ has quit IRC | 04:49 | |
*** Sukhdev has quit IRC | 05:01 | |
*** nicolasbock has joined #openstack-infra | 05:02 | |
*** sambetts_ has quit IRC | 05:09 | |
*** nicolasbock has quit IRC | 05:09 | |
*** sambetts_ has joined #openstack-infra | 05:10 | |
openstackgerrit | Steve Martinelli proposed openstack-infra/project-config: remove cueclient from osc check script https://review.openstack.org/409497 | 05:14 |
*** ijw has joined #openstack-infra | 05:15 | |
*** nadya has quit IRC | 05:19 | |
*** ijw_ has joined #openstack-infra | 05:20 | |
*** ijw has quit IRC | 05:23 | |
*** spzala has quit IRC | 05:23 | |
*** spzala has joined #openstack-infra | 05:24 | |
*** spzala has joined #openstack-infra | 05:24 | |
*** thorst has joined #openstack-infra | 05:28 | |
*** thorst has quit IRC | 05:36 | |
*** kzaitsev_mb has joined #openstack-infra | 05:36 | |
*** ijw_ has quit IRC | 05:40 | |
*** ijw has joined #openstack-infra | 05:41 | |
*** gmann_ has quit IRC | 05:44 | |
*** Julien-zte has quit IRC | 05:49 | |
*** yuval has joined #openstack-infra | 05:49 | |
*** ramishra has quit IRC | 05:50 | |
*** ramishra has joined #openstack-infra | 05:52 | |
*** spzala has quit IRC | 06:25 | |
*** spzala has joined #openstack-infra | 06:25 | |
*** spzala has joined #openstack-infra | 06:26 | |
*** amotoki has joined #openstack-infra | 06:31 | |
*** thorst has joined #openstack-infra | 06:33 | |
*** ramishra has quit IRC | 06:35 | |
*** isaacb has joined #openstack-infra | 06:38 | |
*** thorst has quit IRC | 06:41 | |
*** abregman has joined #openstack-infra | 06:47 | |
*** oanson has joined #openstack-infra | 06:48 | |
*** isaacb has quit IRC | 06:51 | |
*** bhavik has joined #openstack-infra | 06:59 | |
*** bhavik has quit IRC | 07:00 | |
*** rbuzatu has joined #openstack-infra | 07:00 | |
*** ramishra has joined #openstack-infra | 07:00 | |
*** rbuzatu has quit IRC | 07:00 | |
*** rbuzatu has joined #openstack-infra | 07:00 | |
*** amotoki has quit IRC | 07:04 | |
*** rbuzatu has quit IRC | 07:04 | |
*** yamahata has joined #openstack-infra | 07:10 | |
*** ijw has quit IRC | 07:11 | |
*** hurgleburgler has quit IRC | 07:14 | |
*** netsinn is now known as netsin | 07:14 | |
*** spzala has quit IRC | 07:26 | |
*** spzala has joined #openstack-infra | 07:27 | |
*** spzala has joined #openstack-infra | 07:27 | |
*** ijw has joined #openstack-infra | 07:39 | |
*** thorst has joined #openstack-infra | 07:40 | |
*** markvoelker has joined #openstack-infra | 07:45 | |
*** thorst has quit IRC | 07:46 | |
*** esikachev has joined #openstack-infra | 07:48 | |
*** markvoelker has quit IRC | 07:50 | |
*** rcernin has joined #openstack-infra | 07:52 | |
*** esikachev has quit IRC | 08:10 | |
*** esikachev has joined #openstack-infra | 08:19 | |
*** esikachev has quit IRC | 08:24 | |
*** askb has quit IRC | 08:26 | |
*** spzala has quit IRC | 08:28 | |
*** spzala has joined #openstack-infra | 08:28 | |
*** spzala has quit IRC | 08:29 | |
*** spzala has joined #openstack-infra | 08:29 | |
*** vaidy has quit IRC | 08:33 | |
*** isviridov_away has quit IRC | 08:34 | |
*** CrashOverride has joined #openstack-infra | 08:37 | |
*** baoli has joined #openstack-infra | 08:43 | |
*** thorst has joined #openstack-infra | 08:43 | |
*** markvoelker has joined #openstack-infra | 08:46 | |
*** Julien-zte has joined #openstack-infra | 08:47 | |
*** baoli has quit IRC | 08:48 | |
*** kzaitsev_mb has quit IRC | 08:48 | |
*** rcernin has quit IRC | 08:48 | |
*** rbuzatu has joined #openstack-infra | 08:49 | |
*** thorst has quit IRC | 08:51 | |
*** markvoelker has quit IRC | 08:51 | |
*** rbuzatu has quit IRC | 08:52 | |
*** rbuzatu has joined #openstack-infra | 08:53 | |
*** sdake has joined #openstack-infra | 08:53 | |
*** vaidy has joined #openstack-infra | 08:56 | |
*** yamahata has quit IRC | 08:56 | |
*** isviridov_away has joined #openstack-infra | 08:57 | |
*** sdake has quit IRC | 08:59 | |
*** zzzeek has quit IRC | 09:00 | |
*** zzzeek has joined #openstack-infra | 09:00 | |
*** sdake has joined #openstack-infra | 09:00 | |
*** yamahata has joined #openstack-infra | 09:01 | |
*** amotoki has joined #openstack-infra | 09:04 | |
*** Hal has joined #openstack-infra | 09:08 | |
*** Hal is now known as Guest86620 | 09:08 | |
*** amotoki has quit IRC | 09:09 | |
*** kzaitsev_mb has joined #openstack-infra | 09:11 | |
*** yamahata has quit IRC | 09:14 | |
*** esikachev has joined #openstack-infra | 09:20 | |
*** spzala has quit IRC | 09:29 | |
*** spzala has joined #openstack-infra | 09:30 | |
*** esikachev has quit IRC | 09:32 | |
*** nmagnezi has joined #openstack-infra | 09:32 | |
*** sdake_ has joined #openstack-infra | 09:33 | |
*** sdake has quit IRC | 09:34 | |
*** CrashOverride has quit IRC | 09:38 | |
*** sdake_ has quit IRC | 09:41 | |
*** Julien-zte has quit IRC | 09:41 | |
*** sdake has joined #openstack-infra | 09:44 | |
*** markvoelker has joined #openstack-infra | 09:47 | |
*** thorst has joined #openstack-infra | 09:49 | |
*** markvoelker has quit IRC | 09:52 | |
*** esikachev has joined #openstack-infra | 09:53 | |
*** thorst has quit IRC | 09:56 | |
*** bhavik has joined #openstack-infra | 10:02 | |
*** jascott1_ has quit IRC | 10:07 | |
*** sdake has quit IRC | 10:09 | |
*** rbuzatu has quit IRC | 10:23 | |
*** rbuzatu has joined #openstack-infra | 10:24 | |
*** eranrom has quit IRC | 10:26 | |
*** eranrom_ has joined #openstack-infra | 10:26 | |
*** rbuzatu has quit IRC | 10:29 | |
*** ihrachys has joined #openstack-infra | 10:30 | |
*** ihrachys has quit IRC | 10:30 | |
*** spzala has quit IRC | 10:30 | |
*** claudiub|2 has joined #openstack-infra | 10:30 | |
*** spzala has joined #openstack-infra | 10:31 | |
*** ihrachys has joined #openstack-infra | 10:32 | |
*** winggundamth_ has quit IRC | 10:33 | |
*** rbuzatu has joined #openstack-infra | 10:42 | |
*** ihrachys has quit IRC | 10:47 | |
*** markvoelker has joined #openstack-infra | 10:48 | |
*** markvoelker has quit IRC | 10:53 | |
*** ihrachys has joined #openstack-infra | 10:53 | |
*** thorst has joined #openstack-infra | 10:54 | |
*** gluytium_ has joined #openstack-infra | 11:00 | |
*** thorst has quit IRC | 11:01 | |
*** Guest86620 has quit IRC | 11:03 | |
*** gluytium has quit IRC | 11:03 | |
*** asettle has joined #openstack-infra | 11:04 | |
*** asettle has quit IRC | 11:05 | |
*** asettle has joined #openstack-infra | 11:05 | |
*** jascott1_ has joined #openstack-infra | 11:08 | |
*** asettle has quit IRC | 11:09 | |
*** jascott1_ has quit IRC | 11:12 | |
*** yamamoto has quit IRC | 11:16 | |
*** dizquierdo has joined #openstack-infra | 11:28 | |
*** spzala has quit IRC | 11:31 | |
*** spzala has joined #openstack-infra | 11:33 | |
*** dizquierdo has quit IRC | 11:33 | |
*** kzaitsev_mb has quit IRC | 11:42 | |
*** markvoelker has joined #openstack-infra | 11:49 | |
*** markvoelker has quit IRC | 11:53 | |
*** claudiub|2 has quit IRC | 11:54 | |
*** thorst has joined #openstack-infra | 11:59 | |
*** nicolasbock has joined #openstack-infra | 12:00 | |
*** thorst has quit IRC | 12:06 | |
*** amotoki has joined #openstack-infra | 12:07 | |
*** bhavik has quit IRC | 12:09 | |
*** amotoki has quit IRC | 12:12 | |
*** yamamoto has joined #openstack-infra | 12:13 | |
*** baoli has joined #openstack-infra | 12:19 | |
*** esikachev has quit IRC | 12:23 | |
*** caowei_ has joined #openstack-infra | 12:24 | |
*** jascott1_ has joined #openstack-infra | 12:31 | |
*** saibarspeis has joined #openstack-infra | 12:32 | |
*** spzala has quit IRC | 12:33 | |
*** spzala has joined #openstack-infra | 12:34 | |
*** spzala has quit IRC | 12:34 | |
*** spzala has joined #openstack-infra | 12:34 | |
*** wolverineav has joined #openstack-infra | 12:37 | |
*** jascott1_ has quit IRC | 12:37 | |
*** nadya has joined #openstack-infra | 12:39 | |
*** wolverineav has quit IRC | 12:41 | |
*** caowei_ has quit IRC | 12:50 | |
*** caowei_ has joined #openstack-infra | 12:51 | |
*** hashar has joined #openstack-infra | 12:53 | |
*** thorst has joined #openstack-infra | 13:06 | |
*** thorst has quit IRC | 13:11 | |
*** rbuzatu has quit IRC | 13:14 | |
*** yamamoto has quit IRC | 13:17 | |
*** yamamoto has joined #openstack-infra | 13:17 | |
*** yamamoto has quit IRC | 13:22 | |
*** yamamoto has joined #openstack-infra | 13:24 | |
*** rbuzatu has joined #openstack-infra | 13:25 | |
*** rbuzatu_ has joined #openstack-infra | 13:26 | |
*** SpamapS has quit IRC | 13:27 | |
*** SpamapS has joined #openstack-infra | 13:27 | |
*** yamamoto has quit IRC | 13:29 | |
*** ihrachys_ has joined #openstack-infra | 13:29 | |
*** rbuzatu has quit IRC | 13:30 | |
*** SpamapS has quit IRC | 13:30 | |
*** SpamapS has joined #openstack-infra | 13:31 | |
*** ihrachys has quit IRC | 13:31 | |
*** SpamapS has quit IRC | 13:31 | |
*** SpamapS has joined #openstack-infra | 13:31 | |
*** nadya has quit IRC | 13:34 | |
*** jascott1_ has joined #openstack-infra | 13:34 | |
*** ihrachys_ has quit IRC | 13:34 | |
*** spzala has quit IRC | 13:34 | |
*** spzala has joined #openstack-infra | 13:35 | |
*** spzala has quit IRC | 13:35 | |
*** spzala has joined #openstack-infra | 13:35 | |
*** jascott1_ has quit IRC | 13:38 | |
*** ihrachys has joined #openstack-infra | 13:41 | |
*** markvoelker has joined #openstack-infra | 13:50 | |
*** ihrachys has quit IRC | 13:52 | |
*** markvoelker has quit IRC | 13:55 | |
*** caowei_ has quit IRC | 13:59 | |
*** jeckersb is now known as jeckersb_gone | 14:02 | |
*** nadya has joined #openstack-infra | 14:03 | |
*** thorst has joined #openstack-infra | 14:07 | |
*** ihrachys has joined #openstack-infra | 14:15 | |
*** thorst has quit IRC | 14:16 | |
*** nadya has quit IRC | 14:21 | |
*** caowei_ has joined #openstack-infra | 14:22 | |
*** yamamoto has joined #openstack-infra | 14:24 | |
*** yamamoto has quit IRC | 14:24 | |
*** yamamoto has joined #openstack-infra | 14:25 | |
*** yamamoto has quit IRC | 14:25 | |
*** yamamoto has joined #openstack-infra | 14:25 | |
*** baoli has quit IRC | 14:26 | |
*** hashar is now known as hasharAway | 14:26 | |
*** yamamoto has quit IRC | 14:30 | |
*** spzala has quit IRC | 14:35 | |
*** spzala has joined #openstack-infra | 14:36 | |
*** spzala_ has joined #openstack-infra | 14:36 | |
*** spzala has quit IRC | 14:37 | |
*** claudiub|2 has joined #openstack-infra | 14:46 | |
*** thorst has joined #openstack-infra | 14:49 | |
*** markvoelker has joined #openstack-infra | 14:51 | |
*** thorst has quit IRC | 14:52 | |
*** thorst has joined #openstack-infra | 14:54 | |
*** claudiub|2 has quit IRC | 14:54 | |
*** markvoelker has quit IRC | 14:56 | |
*** hasharAway has quit IRC | 15:01 | |
*** thorst has quit IRC | 15:01 | |
*** claudiub|2 has joined #openstack-infra | 15:02 | |
*** baoli has joined #openstack-infra | 15:03 | |
*** caowei_ has quit IRC | 15:05 | |
*** baoli has quit IRC | 15:07 | |
*** sdake has joined #openstack-infra | 15:10 | |
*** anthonyper has quit IRC | 15:16 | |
*** anthonyper has joined #openstack-infra | 15:17 | |
*** eranrom_ has quit IRC | 15:17 | |
*** eranrom has joined #openstack-infra | 15:18 | |
*** claudiub|2 has quit IRC | 15:27 | |
*** yamamoto has joined #openstack-infra | 15:29 | |
*** nmagnezi has quit IRC | 15:30 | |
*** eranrom has quit IRC | 15:30 | |
*** eranrom has joined #openstack-infra | 15:30 | |
*** yamamoto has quit IRC | 15:35 | |
*** jascott1_ has joined #openstack-infra | 15:35 | |
*** rbuzatu_ has quit IRC | 15:36 | |
*** eranrom has quit IRC | 15:36 | |
*** eranrom_ has joined #openstack-infra | 15:36 | |
*** rbuzatu has joined #openstack-infra | 15:36 | |
openstackgerrit | Alvaro Aleman proposed openstack-infra/shade: Fix _neutron_available_floating_ips filtering https://review.openstack.org/409532 | 15:37 |
*** HeOS has quit IRC | 15:37 | |
*** erlon-airlong has quit IRC | 15:40 | |
*** jascott1_ has quit IRC | 15:40 | |
*** rbuzatu has quit IRC | 15:40 | |
*** eranrom_ has quit IRC | 15:42 | |
*** eranrom has joined #openstack-infra | 15:42 | |
*** eranrom has quit IRC | 15:46 | |
*** eranrom_ has joined #openstack-infra | 15:46 | |
*** eranrom_ has quit IRC | 15:51 | |
*** eranrom has joined #openstack-infra | 15:51 | |
*** rbuzatu has joined #openstack-infra | 15:57 | |
*** hurgleburgler has joined #openstack-infra | 15:57 | |
*** esikachev has joined #openstack-infra | 15:57 | |
*** thorst has joined #openstack-infra | 16:00 | |
*** eranrom has quit IRC | 16:00 | |
*** eranrom has joined #openstack-infra | 16:01 | |
*** rbuzatu has quit IRC | 16:01 | |
*** vaidy has quit IRC | 16:04 | |
*** isviridov_away has quit IRC | 16:04 | |
*** eranrom has quit IRC | 16:05 | |
*** eranrom_ has joined #openstack-infra | 16:05 | |
*** thorst has quit IRC | 16:06 | |
*** eranrom_ has quit IRC | 16:06 | |
*** eranrom has joined #openstack-infra | 16:07 | |
*** rbuzatu has joined #openstack-infra | 16:07 | |
*** sdake has quit IRC | 16:07 | |
*** amotoki has joined #openstack-infra | 16:09 | |
*** rbuzatu has quit IRC | 16:12 | |
*** amotoki has quit IRC | 16:13 | |
*** vaidy has joined #openstack-infra | 16:15 | |
*** amotoki has joined #openstack-infra | 16:15 | |
*** isviridov_away has joined #openstack-infra | 16:16 | |
*** spzala_ has quit IRC | 16:17 | |
*** spzala has joined #openstack-infra | 16:17 | |
*** spzala has joined #openstack-infra | 16:17 | |
*** rbuzatu has joined #openstack-infra | 16:18 | |
*** sdake has joined #openstack-infra | 16:20 | |
*** rbuzatu has quit IRC | 16:22 | |
*** abregman has quit IRC | 16:26 | |
*** rbuzatu has joined #openstack-infra | 16:28 | |
*** yuval has quit IRC | 16:31 | |
*** oanson has quit IRC | 16:31 | |
*** baoli has joined #openstack-infra | 16:32 | |
*** rbuzatu has quit IRC | 16:33 | |
*** jeckersb_gone is now known as jeckersb | 16:33 | |
*** nicolasbock has quit IRC | 16:37 | |
*** jascott1_ has joined #openstack-infra | 16:37 | |
*** kamtamtun has joined #openstack-infra | 16:38 | |
*** rbuzatu has joined #openstack-infra | 16:38 | |
*** jascott1_ has quit IRC | 16:41 | |
*** nicolasbock has joined #openstack-infra | 16:43 | |
*** rbuzatu has quit IRC | 16:44 | |
*** rbuzatu has joined #openstack-infra | 16:44 | |
*** kamtamtun has quit IRC | 16:46 | |
*** spzala has quit IRC | 16:47 | |
*** spzala has joined #openstack-infra | 16:48 | |
openstackgerrit | Alvaro Aleman proposed openstack-infra/shade: Fix _neutron_available_floating_ips filtering https://review.openstack.org/409532 | 16:51 |
*** adrian_otto has joined #openstack-infra | 16:57 | |
*** thorst has joined #openstack-infra | 17:05 | |
*** Hal has joined #openstack-infra | 17:07 | |
*** Hal is now known as Guest1413 | 17:07 | |
*** rbuzatu_ has joined #openstack-infra | 17:08 | |
*** rbuzatu has quit IRC | 17:11 | |
*** thorst has quit IRC | 17:11 | |
*** baoli has quit IRC | 17:17 | |
*** spzala has quit IRC | 17:19 | |
*** spzala has joined #openstack-infra | 17:19 | |
*** armax has joined #openstack-infra | 17:19 | |
*** spzala has joined #openstack-infra | 17:19 | |
*** adrian_otto has quit IRC | 17:30 | |
*** esikachev has quit IRC | 17:38 | |
*** sdake has quit IRC | 17:41 | |
*** baoli has joined #openstack-infra | 17:45 | |
*** hogepodge has joined #openstack-infra | 17:50 | |
*** jooni has quit IRC | 17:50 | |
*** spzala has quit IRC | 17:50 | |
*** spzala has joined #openstack-infra | 17:51 | |
*** jooni has joined #openstack-infra | 17:55 | |
*** jooni has quit IRC | 17:55 | |
*** itisha has joined #openstack-infra | 17:57 | |
*** armax has quit IRC | 17:59 | |
*** hongbin has joined #openstack-infra | 18:00 | |
*** armax has joined #openstack-infra | 18:03 | |
*** thorst has joined #openstack-infra | 18:08 | |
*** asettle has joined #openstack-infra | 18:13 | |
*** rbuzatu_ has quit IRC | 18:15 | |
*** rbuzatu has joined #openstack-infra | 18:15 | |
*** thorst has quit IRC | 18:16 | |
*** baoli has quit IRC | 18:17 | |
*** kzaitsev_mb has joined #openstack-infra | 18:18 | |
*** rbuzatu has quit IRC | 18:20 | |
*** rbuzatu has joined #openstack-infra | 18:20 | |
*** sdake has joined #openstack-infra | 18:21 | |
*** spzala has quit IRC | 18:22 | |
*** spzala has joined #openstack-infra | 18:22 | |
*** spzala has quit IRC | 18:22 | |
*** spzala has joined #openstack-infra | 18:22 | |
*** asettle has quit IRC | 18:23 | |
*** gomarivera has joined #openstack-infra | 18:25 | |
*** armax has quit IRC | 18:27 | |
*** gomarivera has quit IRC | 18:30 | |
*** ihrachys has quit IRC | 18:35 | |
*** amotoki has quit IRC | 18:43 | |
*** ihrachys has joined #openstack-infra | 18:45 | |
*** baoli has joined #openstack-infra | 18:45 | |
*** ihrachys has quit IRC | 18:45 | |
*** ihrachys has joined #openstack-infra | 18:47 | |
*** ihrachys has quit IRC | 18:51 | |
*** amotoki has joined #openstack-infra | 18:52 | |
*** spzala has quit IRC | 18:52 | |
*** spzala has joined #openstack-infra | 18:53 | |
*** spzala has quit IRC | 18:53 | |
*** spzala has joined #openstack-infra | 18:53 | |
*** markvoelker has joined #openstack-infra | 18:54 | |
*** esikachev has joined #openstack-infra | 18:57 | |
*** eliqiao has quit IRC | 18:57 | |
*** alex_xu has quit IRC | 18:58 | |
*** markvoelker has quit IRC | 18:59 | |
*** rcernin has joined #openstack-infra | 18:59 | |
*** Goneri has joined #openstack-infra | 18:59 | |
*** gomarivera has joined #openstack-infra | 19:02 | |
*** armax has joined #openstack-infra | 19:05 | |
*** amotoki has quit IRC | 19:07 | |
*** Goneri has quit IRC | 19:09 | |
*** hongbin has quit IRC | 19:10 | |
*** gomarivera has quit IRC | 19:13 | |
*** eliqiao has joined #openstack-infra | 19:15 | |
*** alex_xu has joined #openstack-infra | 19:15 | |
*** thorst has joined #openstack-infra | 19:15 | |
*** HeOS has joined #openstack-infra | 19:15 | |
*** nicolasbock has quit IRC | 19:16 | |
*** baoli has quit IRC | 19:18 | |
*** thorst has quit IRC | 19:20 | |
*** saibarspeis has quit IRC | 19:26 | |
*** ccamacho1 has quit IRC | 19:38 | |
*** jascott1_ has joined #openstack-infra | 19:39 | |
*** jascott1_ has quit IRC | 19:44 | |
*** baoli has joined #openstack-infra | 19:45 | |
*** kzaitsev_mb has quit IRC | 19:48 | |
*** markvoelker has joined #openstack-infra | 19:55 | |
*** baoli has quit IRC | 19:58 | |
*** baoli has joined #openstack-infra | 19:58 | |
*** markvoelker has quit IRC | 19:59 | |
*** hashar has joined #openstack-infra | 20:01 | |
*** jascott1_ has joined #openstack-infra | 20:02 | |
openstackgerrit | Andreas Jaeger proposed openstack-infra/project-config: Handle cinder driverfixes branch (part1) https://review.openstack.org/409461 | 20:04 |
openstackgerrit | Andreas Jaeger proposed openstack-infra/project-config: Handle cinder driverfixes branch (part2) https://review.openstack.org/409463 | 20:04 |
*** kzaitsev_mb has joined #openstack-infra | 20:05 | |
*** jascott1_ has quit IRC | 20:07 | |
*** spzala has quit IRC | 20:17 | |
*** thorst has joined #openstack-infra | 20:17 | |
*** thorst has quit IRC | 20:22 | |
*** thorst has joined #openstack-infra | 20:22 | |
*** rkukura has quit IRC | 20:25 | |
*** amotoki has joined #openstack-infra | 20:26 | |
*** thorst has quit IRC | 20:31 | |
*** baoli has quit IRC | 20:39 | |
*** amotoki has quit IRC | 20:41 | |
*** esikachev has quit IRC | 20:41 | |
*** nicolasbock has joined #openstack-infra | 20:45 | |
*** nicolasbock has quit IRC | 20:46 | |
*** nicolasbock has joined #openstack-infra | 20:46 | |
*** yamahata has joined #openstack-infra | 20:49 | |
*** hashar has quit IRC | 21:08 | |
*** jascott1_ has joined #openstack-infra | 21:13 | |
*** nicolasbock has quit IRC | 21:14 | |
*** spzala has joined #openstack-infra | 21:17 | |
*** kzaitsev_mb has quit IRC | 21:18 | |
*** alex_xu has quit IRC | 21:19 | |
*** alex_xu has joined #openstack-infra | 21:19 | |
*** yee379 has quit IRC | 21:23 | |
*** yee379 has joined #openstack-infra | 21:23 | |
*** askb has joined #openstack-infra | 21:25 | |
*** thorst has joined #openstack-infra | 21:29 | |
*** spzala has quit IRC | 21:29 | |
*** yamahata has quit IRC | 21:32 | |
*** Guest55197 is now known as dansmith | 21:33 | |
*** thorst has quit IRC | 21:36 | |
*** dave-mccowan has joined #openstack-infra | 21:37 | |
*** esikachev has joined #openstack-infra | 21:38 | |
*** esikachev has quit IRC | 21:42 | |
*** rcernin has quit IRC | 21:43 | |
*** dave-mccowan has quit IRC | 21:49 | |
*** rbuzatu has quit IRC | 21:51 | |
openstackgerrit | mathieu bultel proposed openstack-infra/tripleo-ci: Implement major upgrade for Newton to Ocata https://review.openstack.org/404831 | 21:51 |
*** itisha has quit IRC | 21:52 | |
*** markvoelker has joined #openstack-infra | 21:56 | |
*** gomarivera has joined #openstack-infra | 21:57 | |
openstackgerrit | mathieu bultel proposed openstack-infra/tripleo-ci: Implement major upgrade for Newton to Ocata https://review.openstack.org/404831 | 21:59 |
*** markvoelker has quit IRC | 22:01 | |
*** docaedo4 has quit IRC | 22:03 | |
*** docaedo4 has joined #openstack-infra | 22:04 | |
*** yamamoto has joined #openstack-infra | 22:11 | |
*** timello has quit IRC | 22:14 | |
*** aeng has joined #openstack-infra | 22:16 | |
*** claudiub|2 has joined #openstack-infra | 22:17 | |
*** timello has joined #openstack-infra | 22:20 | |
*** sdake_ has joined #openstack-infra | 22:20 | |
*** sdake has quit IRC | 22:24 | |
*** esikachev has joined #openstack-infra | 22:31 | |
openstackgerrit | Adam Spiers proposed openstack-infra/irc-meetings: move HA meeting to Wednesday 0900 UTC https://review.openstack.org/409551 | 22:31 |
*** dave-mccowan has joined #openstack-infra | 22:32 | |
*** esikachev has quit IRC | 22:35 | |
*** thorst has joined #openstack-infra | 22:38 | |
*** dave-mccowan has quit IRC | 22:39 | |
openstackgerrit | Adam Spiers proposed openstack-infra/irc-meetings: move HA meeting to Wednesday 0900 UTC https://review.openstack.org/409551 | 22:39 |
*** tphummel has quit IRC | 22:43 | |
*** thorst has quit IRC | 22:46 | |
*** tphummel has joined #openstack-infra | 22:48 | |
*** rbuzatu has joined #openstack-infra | 22:50 | |
*** rbuzatu has quit IRC | 22:57 | |
*** markvoelker has joined #openstack-infra | 22:57 | |
*** rbuzatu has joined #openstack-infra | 22:59 | |
*** Cibo has quit IRC | 23:01 | |
*** markvoelker has quit IRC | 23:02 | |
*** adriant has joined #openstack-infra | 23:04 | |
*** thorst has joined #openstack-infra | 23:05 | |
*** camunoz has joined #openstack-infra | 23:08 | |
*** asettle has joined #openstack-infra | 23:10 | |
*** alex_xu has quit IRC | 23:13 | |
*** alex_xu has joined #openstack-infra | 23:14 | |
*** Cibo has joined #openstack-infra | 23:15 | |
*** asettle has quit IRC | 23:18 | |
*** armax has quit IRC | 23:20 | |
*** ijw has quit IRC | 23:22 | |
*** hoolio_ is now known as hoolio | 23:27 | |
openstackgerrit | Merged openstack-infra/zuul: Re-enable requirement status tests https://review.openstack.org/401062 | 23:30 |
*** spzala has joined #openstack-infra | 23:30 | |
*** esikachev has joined #openstack-infra | 23:31 | |
*** esikachev has quit IRC | 23:36 | |
*** spzala has quit IRC | 23:36 | |
*** thorst has quit IRC | 23:36 | |
*** esikachev has joined #openstack-infra | 23:37 | |
*** thorst has joined #openstack-infra | 23:37 | |
*** s-shiono has joined #openstack-infra | 23:40 | |
*** esikachev has quit IRC | 23:41 | |
*** claudiub|2 has quit IRC | 23:43 | |
*** dingyichen has joined #openstack-infra | 23:45 | |
*** thorst has quit IRC | 23:46 | |
openstackgerrit | fumihiko kakuma proposed openstack-infra/project-config: Add scenario test for neutron-dynamic-routing https://review.openstack.org/407778 | 23:47 |
*** Cibo has quit IRC | 23:52 | |
*** gomarivera has quit IRC | 23:55 | |
*** markvoelker has joined #openstack-infra | 23:58 |
Generated by irclog2html.py 2.14.0 by Marius Gedminas - find it at mg.pov.lt!