Saturday, 2017-01-07

*** erhudy has quit IRC00:00
openstackgerritMarcus Williams proposed openstack/kolla-ansible: [WIP] Split Openvswitch into own role  https://review.openstack.org/41679300:12
openstackgerritMarcus Williams proposed openstack/kolla-ansible: [WIP] Add OpenDaylight role  https://review.openstack.org/41636700:12
*** lmasiero has joined #openstack-kolla00:13
kfox1111sorry. got stuck in a meeting.00:15
kfox1111sbezverk: did you figure it out or still need help?00:15
kfox1111sbezverk: looksl ike there are single quotes around the $(ls...)' ?00:15
kfox1111that might be the issue00:15
klindgren_hello - I have an kolla-ansible question.  Is it possible to have a way to jsut execute the role playbooks directly?  Lie right now I want to just do stuff with glance.  I have been using:00:17
klindgren_ansible-playbook --check --diff -i /root/kolla-ansible/ansible/inventory/glance-only -e @/etc/kolla/globals.yml -e @/etc/kolla/passwords.yml -e CONFIG_DIR=/etc/kolla  --tags glance -e action=deploy /root/kolla-ansible/ansible/site.yaml00:17
klindgren_but wondering if I could just execute against say:  /rroot/kolla-ansible/ansible/roles/glance/tasks/start.yml00:18
klindgren_?00:18
klindgren_I get an ansible-playbook error, but wondering if the idea of what I want to do is feasible?00:18
openstackgerritMarcus Williams proposed openstack/kolla-ansible: [WIP] Add OpenDaylight role  https://review.openstack.org/41636700:19
*** goldyfruit has quit IRC00:21
kfox1111sbezverk: I commeted a bit.00:25
openstackgerritKevin Fox proposed openstack/kolla-kubernetes: Switch keystone jobs to global api  https://review.openstack.org/41723400:31
openstackgerritMarcus Williams proposed openstack/kolla-ansible: [WIP] Split Openvswitch into own role  https://review.openstack.org/41679300:32
kfox1111interesting: The image repository prefix can be changed via the environment variable KUBE_REPO_PREFIX as a temporary solution #3594800:39
*** sdake has joined #openstack-kolla00:42
sdakehey peeplez00:46
kfox1111hi00:46
sdakesup kfox111100:47
sdakei'm on a plane back to phx atm00:47
portdirecthey o/00:47
sdakeshould be in in an hour00:47
sdakesup portdirect00:47
portdirectkfox1111: you get that json working?00:47
kfox1111portdirect: if we named our containers with -amd64, that prefix trick would have just worked. :/00:47
sdakeboy cattle class sucks00:47
portdirectkfox1111: i know :(00:47
kfox1111portdirect: yeah. I think so. but sbezverk doesn't seem to be here to try it.00:47
kfox1111portdirect: maybe we shoould ask for a followon ps to rename it back?00:48
portdirectfroma quick grock - may also need quotes round the image?00:48
kfox1111portdirect: yeah. a | quote.00:48
kfox1111wana add to the review or have me do it?00:49
kfox1111whatever's easier.00:49
portdirectkfox1111: we could/should try that - though Jeffrey4l (i think) had some potentially valid converns - though i think we just need to explain the logic better (whih i failed to do at the time)00:49
portdirectkfox1111: for the json im just a nosy bystander :)00:49
kfox1111yeah. I think proposing the rename back and explaining its required by k8s naming convention might help?00:50
kfox1111portdirect: k. I'll add the comment, as I still have gerrit up.00:50
portdirectnice -though i think the line 9 error may be a deeper issue - the multiline statement is nine lines long...00:51
kfox1111line 9 error?00:51
portdirectignore that00:52
kfox1111k00:53
portdirectsbezverk, mentioned that the parser was throwing up at line 19, which is the number of lines in that the end pf the multiline statement - can you do that in json?00:53
portdirectmay have to be a single line horror. :/00:54
portdirectyeah - think it does :(00:57
kfox1111I've had some relatively good luck bringing the string into python,00:57
kfox1111running it through json.loads and then slicing the string at the char it complains about.00:57
kfox1111pretty sure it was the quotes he was using though.00:57
portdirecti wnet the other way 2 sec00:57
kfox1111with the comments in the review, I think it gets rid of the quoting issues.00:58
portdirecthttp://paste.openstack.org/show/594185/00:58
kfox1111yeah.00:59
kfox1111I don't think the ls -A is right though.00:59
kfox1111and the single quotes in it are messing with things.00:59
*** Pavo has quit IRC00:59
kfox1111cause the whole thing was ' quote escaped.00:59
portdirecthttp://stackoverflow.com/questions/2392766/multiline-strings-in-json :(01:00
kfox1111yeah. the ting though is its json in yaml,01:00
kfox1111so there's another parser involved too.01:00
kfox1111really messes with things. :/01:00
portdirectstill needs to be valid json01:00
kfox1111I really had hoped it would get out of beta for 1.5. :/01:00
kfox1111yup.01:01
kfox1111its valid enough json once the quote issue is resolved.01:01
portdirectyeah - its gonna be out in 1.6, then we can ahve all the fun of converting stuff :D01:01
kfox1111it ends up eating the newlines, but the ';''s are good enough.01:01
kfox1111we use the pattern alot in other places.01:01
portdirectin init containers?01:02
kfox1111yeah.01:02
portdirectoh - I'll shutup then :D whoops!01:02
kfox1111see, like: https://github.com/openstack/kolla-kubernetes/blob/master/helm/microservice/cinder-backup/templates/cinder_backup.yaml01:02
kfox1111well,01:03
portdirecthttps://github.com/openstack/kolla-kubernetes/blob/master/helm/microservice/cinder-backup/templates/cinder_backup.yaml#L50-L51 <<-got it01:03
kfox1111https://github.com/openstack/kolla-kubernetes/blob/master/helm/kolla-common/templates/_common_api_python_deployment.yaml01:03
kfox1111there's one with multiple lines.01:03
portdirectcommon theme there is no indentation - though i dont think that should matter01:04
kfox1111yeah.01:04
kfox1111but its all being apassed to the -c argument of sh in one string.01:04
kfox1111so ws really doesn't matter. :)01:04
kfox1111kind of amazing it works at all. ;)01:05
kfox1111but has worked pretty well for a long time.01:06
portdirectyeah - and I've checked, deffo not valid json - but I've seen it working - and have never noticed before - another day another new bit of info :D01:08
kfox1111well, its run through yaml first.01:09
kfox1111load the whole thing in python,01:09
kfox1111then read out the string from the attribute.01:09
kfox1111it does parse out as valid json from there for me.01:09
kfox1111pre'helm, we were validating that field through yaml/json on every commit.01:10
kfox1111probably should reimplement that test at somepoint on the helm side,01:10
kfox1111but we have full blown gating now, so less important.01:10
portdirectdoh of course - its is valid yaml01:12
kfox1111the whole json in yaml thing is sketchy. :)01:12
kfox1111but it mostly works.01:12
kfox1111really really hope 1.6 has it pure yaml.01:13
* portdirect runs off to make yo dawg meme01:13
kfox1111its far too useful to leave it bata any longer.01:13
* kfox1111 chuckles01:13
portdirectoh also, this blew my mind: https://github.com/kubernetes/minikube/issues/97301:15
portdirectcheck out the triage time on that01:15
kfox1111wow01:15
portdirect14 mins from determining what was causing bug to new iso released01:17
*** sdake has quit IRC01:17
kfox1111nice.01:19
*** adrian_otto has quit IRC01:20
openstackgerritKevin Fox proposed openstack/kolla-kubernetes: Switch keystone jobs to global api  https://review.openstack.org/41723401:21
openstackgerritSerguei Bezverkhi proposed openstack/kolla-kubernetes: WIP helm repository container and service  https://review.openstack.org/41747401:24
kfox1111wow... openstack's so broken. :/01:24
kfox1111trove went through some huge effort to add encrypted oslo.rpc just to try and fix their security problem without adding a zaqar dependency.01:25
kfox1111still doesn't prevent them from  being dos'ed though.01:25
kfox1111while zaqar could just fix all of this. :/01:25
kfox1111the big tent has really not been kind to openstack. :/01:25
sbezverkkfox1111: what is broken now?01:26
kfox1111sbezverk: just the openstack big tent.01:26
kfox1111nothing new. just more symptoms of that.01:26
kfox1111zaqar could solve alot of folks commons problems but no one wants to be the first to start depending on it. :/01:28
kfox1111so the hacks apon hacks containue...01:29
kfox1111and this is where k8s will progress, where openstack will fail. :/01:29
kfox1111heh... it must be friday...01:30
*** jascott1- has joined #openstack-kolla01:30
sbezverkkfox1111: zaqar is the replacement for rabbitmq?01:30
*** goldyfruit has joined #openstack-kolla01:31
*** goldyfruit has quit IRC01:31
*** goldyfruit has joined #openstack-kolla01:31
kfox1111zaqar's message queing. think of it more as a multitenant message queue that's http based.01:32
kfox1111and that's trove's problem. they need multitenant like security,01:32
kfox1111and a way to talk back and forth through neutron.01:32
kfox1111and http's great at that.01:33
*** sayantan_ has quit IRC01:33
kfox1111but they chose to solve it by just opening up a rabbitmq and adding a layer of "security" by encrypting the messages.01:33
kfox1111protects now from cross tenant message injection, but still a user could cram the rabbit full of junk.01:33
*** hieulq_ has joined #openstack-kolla01:34
kfox1111and dos another tenants ability to do stuff on their own vm's.01:34
kfox1111pretty much any advanced openstack service that has a guest agent could benifit from zaqar. but none of them want to be the first to depend on it.01:34
*** hieulq_ has quit IRC01:35
kfox1111emagine just how messed up if no one wanted to depend on nova or cinder back in the day. :/01:35
kfox1111ah well. onward and upword.01:35
sbezverkkfox1111: :)01:38
*** goldyfruit has quit IRC01:39
sbezverkkfox1111: if one user dos rabbitmq it will be a suicide01:39
sbezverkusually dos attacks do not cause harm to initiators ;-)01:39
sbezverkat least it is the case in the networking area01:40
kfox1111yeah.01:40
kfox1111I'm glad they are making progress. because before, you could potentially own some other tenants data.01:40
kfox1111now at least its just down to a dos thing. so we might be able to redeploy trove soon.01:41
kfox1111but still. all for not wanting to depend on another openstack service. sad.01:41
kfox1111horizon would really really benifit from it too.01:41
kfox1111no more polling. it could just hook into zaqar and nova could push updates right to the browser.01:41
kfox1111horizon said they really would like that too, but they are scared of depending on zaqar too.01:42
kfox1111ok. gotta head out. have a good one! :)01:42
sbezverkhave a great weekend!!01:42
kfox1111you too! (if we dont talk this weekend. :)01:43
kfox1111oh,, so close... down to create-keystone-user jobs...01:43
kfox1111will fix tonight probably.01:43
*** MasterOfBugs has quit IRC01:47
*** ssurana has joined #openstack-kolla01:54
*** ssurana has quit IRC01:54
*** saneax is now known as saneax-_-|AFK02:05
*** QuentinM has joined #openstack-kolla02:06
*** ajafo has joined #openstack-kolla02:08
*** caowei has joined #openstack-kolla02:20
*** hieulq_ has joined #openstack-kolla02:25
*** zhubingbing has joined #openstack-kolla02:28
*** hieulq_ has quit IRC02:31
*** jrich523 has quit IRC02:32
*** unicell has quit IRC02:35
*** Jeffrey4l_ has quit IRC02:38
openstackgerritWei Cao proposed openstack/kolla-ansible: Add karbor ansible role  https://review.openstack.org/40222903:06
*** mgiles has quit IRC03:12
*** sdake has joined #openstack-kolla03:12
sdakesdake at home :)03:12
sdakesup peeps03:12
sdakesdake at home :)03:12
openstackgerritWei Cao proposed openstack/kolla-ansible: Add freezer ansible role  https://review.openstack.org/40222403:14
*** rhallisey has quit IRC03:21
*** lmasiero has quit IRC03:42
*** lmasiero has joined #openstack-kolla03:45
*** lmasiero has quit IRC03:50
*** lmasiero has joined #openstack-kolla03:50
openstackgerritWei Cao proposed openstack/kolla-ansible: Add freezer ansible role  https://review.openstack.org/40222403:53
*** sdake_ has joined #openstack-kolla03:55
*** sdake_ has quit IRC03:55
*** sdake_ has joined #openstack-kolla03:55
*** lmasiero has quit IRC03:57
*** sdake has quit IRC03:59
*** zhubingbing has quit IRC03:59
*** lmasiero has joined #openstack-kolla04:02
*** lmasiero has quit IRC04:06
openstackgerritWei Cao proposed openstack/kolla-ansible: all.yml should be in alphabetical order  https://review.openstack.org/41757304:09
*** prameswar has joined #openstack-kolla04:11
*** lmasiero has joined #openstack-kolla04:11
*** lmasiero has quit IRC04:15
*** lmasiero has joined #openstack-kolla04:20
openstackgerritWei Cao proposed openstack/kolla: Add .project and .pydevproject to .gitignore  https://review.openstack.org/41757404:20
*** lmasiero has quit IRC04:25
*** lmasiero has joined #openstack-kolla04:29
*** zhubingbing has joined #openstack-kolla04:31
*** lmasiero has quit IRC04:34
*** lmasiero has joined #openstack-kolla04:38
*** lmasiero has quit IRC04:43
*** lmasiero has joined #openstack-kolla04:47
*** lmasiero has quit IRC04:54
*** lmasiero has joined #openstack-kolla04:59
*** jascott1 has quit IRC05:00
*** jascott1- is now known as jascott105:00
*** lmasiero has quit IRC05:03
*** lmasiero has joined #openstack-kolla05:08
*** lmasiero has quit IRC05:12
*** lmasiero has joined #openstack-kolla05:17
*** lmasiero has quit IRC05:22
*** sdake_ has quit IRC05:24
*** lmasiero has joined #openstack-kolla05:26
*** lmasiero has quit IRC05:30
*** lmasiero has joined #openstack-kolla05:35
*** unicell has joined #openstack-kolla05:39
*** lmasiero has quit IRC05:40
*** adrian_otto has joined #openstack-kolla05:42
*** lmasiero has joined #openstack-kolla05:44
*** lmasiero has quit IRC05:49
*** lmasiero has joined #openstack-kolla05:53
openstackgerritSerguei Bezverkhi proposed openstack/kolla-kubernetes: WIP helm repository container and service  https://review.openstack.org/41747405:56
openstackgerritSerguei Bezverkhi proposed openstack/kolla: WIP Add helm-repository image  https://review.openstack.org/41742605:56
*** lmasiero has quit IRC05:58
*** lmasiero has joined #openstack-kolla06:02
*** lmasiero has quit IRC06:07
*** lmasiero has joined #openstack-kolla06:12
*** lmasiero has quit IRC06:16
*** lmasiero has joined #openstack-kolla06:21
*** lmasiero has quit IRC06:25
openstackgerritSerguei Bezverkhi proposed openstack/kolla: Add helm-repository image  https://review.openstack.org/41742606:27
openstackgerritSerguei Bezverkhi proposed openstack/kolla-kubernetes: Helm repository container and service  https://review.openstack.org/41747406:27
*** lmasiero has joined #openstack-kolla06:30
*** g3ek has quit IRC06:31
*** haplo37 has quit IRC06:31
*** lmasiero has quit IRC06:34
*** lamt has joined #openstack-kolla06:34
*** lmasiero has joined #openstack-kolla06:39
*** g3ek has joined #openstack-kolla06:41
*** prameswar has quit IRC06:41
*** haplo37 has joined #openstack-kolla06:42
*** lmasiero has quit IRC06:43
*** lmasiero has joined #openstack-kolla06:48
*** lmasiero has quit IRC06:52
openstackgerritqiankun.zhang proposed openstack/kolla: Install tacker-horizon into horizon image,add Bug  https://review.openstack.org/40781006:56
*** salv-orlando has joined #openstack-kolla06:56
*** lmasiero has joined #openstack-kolla06:57
*** prameswar has joined #openstack-kolla06:59
openstackgerritqiankun.zhang proposed openstack/kolla: Install tacker-horizon into horizon image  https://review.openstack.org/40781007:00
*** salv-orlando has quit IRC07:00
*** lmasiero has quit IRC07:02
*** lmasiero has joined #openstack-kolla07:06
*** prameswar has quit IRC07:08
*** lmasiero has quit IRC07:11
*** lmasiero has joined #openstack-kolla07:15
*** zhubingbing has quit IRC07:16
*** lmasiero has quit IRC07:20
*** lmasiero has joined #openstack-kolla07:25
openstackgerritqiankun.zhang proposed openstack/kolla-ansible: Enable tacker-horizon when enable_tacker is yes  https://review.openstack.org/40782207:28
*** lmasiero has quit IRC07:30
*** lmasiero has joined #openstack-kolla07:34
*** lmasiero has quit IRC07:38
*** caowei has quit IRC07:42
*** lmasiero has joined #openstack-kolla07:43
*** lmasiero has quit IRC07:48
*** lmasiero has joined #openstack-kolla07:52
*** lmasiero has quit IRC07:56
*** salv-orlando has joined #openstack-kolla07:57
*** lmasiero has joined #openstack-kolla08:01
*** salv-orlando has quit IRC08:01
*** pcaruana has joined #openstack-kolla08:02
*** lmasiero has quit IRC08:06
*** lmasiero has joined #openstack-kolla08:10
*** lmasiero has quit IRC08:15
*** saneax-_-|AFK is now known as saneax08:15
*** lmasiero has joined #openstack-kolla08:19
*** lmasiero has quit IRC08:24
*** hieulq_ has joined #openstack-kolla08:28
*** lmasiero has joined #openstack-kolla08:29
*** zhubingbing has joined #openstack-kolla08:29
*** hieulq_ has quit IRC08:30
*** saneax is now known as saneax-_-|AFK08:31
*** lmasiero has quit IRC08:33
*** lmasiero has joined #openstack-kolla08:38
openstackgerritjianyi proposed openstack/kolla-ansible: Add zun ansible role  https://review.openstack.org/41617908:39
*** caowei has joined #openstack-kolla08:41
*** lmasiero has quit IRC08:42
*** lmasiero has joined #openstack-kolla08:47
*** zhubingbing has quit IRC08:50
*** lmasiero has quit IRC08:51
*** lmasiero has joined #openstack-kolla08:56
*** salv-orlando has joined #openstack-kolla08:58
*** lmasiero has quit IRC09:01
*** salv-orlando has quit IRC09:02
*** lmasiero has joined #openstack-kolla09:05
*** lmasiero has quit IRC09:09
*** zhubingbing has joined #openstack-kolla09:10
*** lmasiero has joined #openstack-kolla09:14
openstackgerritchen.xing proposed openstack/kolla: [WIP]Add monasca images  https://review.openstack.org/41759309:18
*** lmasiero has quit IRC09:19
*** lmasiero has joined #openstack-kolla09:23
*** zhubingbing has quit IRC09:25
openstackgerritchen.xing proposed openstack/kolla: [WIP]Add monasca images  https://review.openstack.org/41759309:26
*** caowei has quit IRC09:27
*** lmasiero has quit IRC09:28
*** lmasiero has joined #openstack-kolla09:33
*** lmasiero has quit IRC09:37
*** lmasiero has joined #openstack-kolla09:42
*** hieulq_ has joined #openstack-kolla09:44
*** hieulq_ has quit IRC09:46
*** lmasiero has quit IRC09:46
*** zhubingbing has joined #openstack-kolla09:48
*** lmasiero has joined #openstack-kolla09:51
*** lmasiero has quit IRC09:55
*** adrian_otto has quit IRC09:56
*** salv-orlando has joined #openstack-kolla09:59
*** lmasiero has joined #openstack-kolla10:00
*** salv-orlando has quit IRC10:03
*** lmasiero has quit IRC10:05
*** lmasiero has joined #openstack-kolla10:09
*** lmasiero has quit IRC10:14
*** lmasiero has joined #openstack-kolla10:18
*** hieulq_ has joined #openstack-kolla10:20
*** lmasiero has quit IRC10:23
*** hieulq_ has quit IRC10:23
*** hieulq_ has joined #openstack-kolla10:26
*** lmasiero has joined #openstack-kolla10:27
*** hieulq_ has quit IRC10:29
*** prameswar has joined #openstack-kolla10:32
*** lmasiero has quit IRC10:32
*** lmasiero has joined #openstack-kolla10:37
*** lmasiero has quit IRC10:41
*** pbourke has quit IRC10:42
*** hieulq_ has joined #openstack-kolla10:43
*** pbourke has joined #openstack-kolla10:43
*** lmasiero has joined #openstack-kolla10:46
*** prameswar has quit IRC10:47
*** hieulq_ has quit IRC10:48
*** lmasiero has quit IRC10:50
*** hieulq_ has joined #openstack-kolla10:52
*** hieulq_ has quit IRC10:52
*** sp_ has quit IRC10:54
*** lmasiero has joined #openstack-kolla10:55
*** hieulq_ has joined #openstack-kolla10:57
*** lmasiero has quit IRC10:59
*** salv-orlando has joined #openstack-kolla11:00
*** lmasiero has joined #openstack-kolla11:04
*** salv-orlando has quit IRC11:04
*** sp_ has joined #openstack-kolla11:06
*** lmasiero has quit IRC11:08
*** hieulq_ has quit IRC11:10
*** lmasiero has joined #openstack-kolla11:13
*** lmasiero has quit IRC11:17
*** lmasiero has joined #openstack-kolla11:22
*** lmasiero has quit IRC11:27
*** lmasiero has joined #openstack-kolla11:31
*** lmasiero has quit IRC11:36
*** lmasiero has joined #openstack-kolla11:41
*** lmasiero has quit IRC11:45
*** lmasiero has joined #openstack-kolla11:50
*** lmasiero has quit IRC11:57
openstackgerritjianyi proposed openstack/kolla-ansible: Add zun ansible role  https://review.openstack.org/41617911:58
*** salv-orlando has joined #openstack-kolla12:01
*** salv-orlando has quit IRC12:05
*** bjolo has joined #openstack-kolla12:09
*** saneax-_-|AFK is now known as saneax12:11
*** saneax is now known as saneax-_-|AFK12:14
bjolols12:15
*** bjolo has quit IRC12:15
*** bjolo has joined #openstack-kolla12:15
openstackgerritzhubingbing proposed openstack/kolla-ansible: Enable fluentd deployment in gate  https://review.openstack.org/41759912:20
zhubingbinghello guys12:20
*** saneax-_-|AFK is now known as saneax12:31
*** sdake has joined #openstack-kolla12:50
openstackgerritEduardo Gonzalez proposed openstack/kolla-ansible: Add designate_mdns fact into precheck  https://review.openstack.org/41760312:50
openstackgerritEduardo Gonzalez proposed openstack/kolla: Fix zaqar container  https://review.openstack.org/40775712:55
*** sdake_ has joined #openstack-kolla12:55
*** sdake has quit IRC12:56
openstackgerritEduardo Gonzalez proposed openstack/kolla-ansible: Ansible config for nova-serialproxy console  https://review.openstack.org/41587013:01
openstackgerritzhubingbing proposed openstack/kolla-ansible: WIP add fluentd role  https://review.openstack.org/40739213:22
openstackgerritzhubingbing proposed openstack/kolla-ansible: Add fluentd role  https://review.openstack.org/40739213:23
*** saneax is now known as saneax-_-|AFK13:24
*** sdake has joined #openstack-kolla13:57
*** sdake_ has quit IRC14:00
openstackgerritchen.xing proposed openstack/kolla: [WIP] Add vitrage images  https://review.openstack.org/41759314:11
*** sp__ has joined #openstack-kolla14:12
openstackgerritSerguei Bezverkhi proposed openstack/kolla: Add helm-repository image  https://review.openstack.org/41742614:42
*** lmasiero has joined #openstack-kolla14:45
*** lmasiero has quit IRC14:56
*** sdake_ has joined #openstack-kolla14:57
*** hieulq_ has joined #openstack-kolla14:58
*** sdake has quit IRC14:59
*** sp__ has quit IRC15:06
*** salv-orlando has joined #openstack-kolla15:18
*** sdake_ has quit IRC15:20
*** sdake has joined #openstack-kolla15:20
*** hieulq_ has quit IRC15:26
*** dave-mccowan has joined #openstack-kolla15:44
*** lmasiero has joined #openstack-kolla15:45
*** salv-orl_ has joined #openstack-kolla15:54
*** dave-mcc_ has joined #openstack-kolla15:56
*** salv-orlando has quit IRC15:56
*** dave-mccowan has quit IRC15:57
*** Pavo has joined #openstack-kolla15:58
*** matrohon has joined #openstack-kolla15:58
*** sdake_ has joined #openstack-kolla16:05
openstackgerritSerguei Bezverkhi proposed openstack/kolla-kubernetes: Helm repository container and service  https://review.openstack.org/41747416:07
*** sdake has quit IRC16:07
openstackgerritSerguei Bezverkhi proposed openstack/kolla: Add helm-repository image  https://review.openstack.org/41742616:10
*** matrohon has quit IRC16:14
*** lmasiero has quit IRC16:20
*** Pavo has quit IRC16:21
*** dave-mcc_ has quit IRC16:30
*** matrohon has joined #openstack-kolla16:43
*** Pavo has joined #openstack-kolla16:43
*** salv-orl_ has quit IRC16:49
*** matrohon has quit IRC16:51
*** Pavo has quit IRC16:59
openstackgerritMerged openstack/kolla-ansible: Add "---" for designate roles  https://review.openstack.org/39810817:00
openstackgerritMerged openstack/kolla-ansible: Move ceilometer precheck into its own role  https://review.openstack.org/41563517:00
*** prameswar has joined #openstack-kolla17:02
openstackgerritcaoyuan proposed openstack/kolla-ansible: Move aodh precheck into its own role  https://review.openstack.org/40438917:07
openstackgerritcaoyuan proposed openstack/kolla-ansible: Move aodh precheck into its own role  https://review.openstack.org/40438917:09
openstackgerritcaoyuan proposed openstack/kolla-ansible: Move aodh precheck into its own role  https://review.openstack.org/40438917:10
openstackgerritKevin Fox proposed openstack/kolla-kubernetes: Switch keystone jobs to global api  https://review.openstack.org/41723417:16
openstackgerritcaoyuan proposed openstack/kolla-ansible: Move congress precheck into its own role  https://review.openstack.org/41397117:16
*** bmace has quit IRC17:19
*** bmace has joined #openstack-kolla17:19
*** prameswar has quit IRC17:23
sbezverkkfox1111: when you have a chance please check: https://review.openstack.org/417474 I tested it in my local testbed and both "git" and "tar" are working. I cannot add it to the gate test as the image is not yet avialable.17:27
kfox1111sbezverk: morning.17:27
kfox1111k. I'll have a look.17:27
*** Pavo has joined #openstack-kolla17:33
kfox1111sbezverk: looking good. :)17:40
openstackgerritKevin Fox proposed openstack/kolla-kubernetes: Switch keystone jobs to global api  https://review.openstack.org/41723417:44
kfox1111sbezverk: after we get further along, maybe we make a "deploymentkit" super package. has stuff like the helm registry, and a docker registry in it?17:45
*** Pavo has quit IRC17:46
sbezverkkfox1111: sounds good17:49
*** Pavo has joined #openstack-kolla17:53
*** Pavo has quit IRC17:54
*** Pavo has joined #openstack-kolla18:00
*** Pavo has quit IRC18:01
*** zhubingbing has quit IRC18:02
*** zhubingbing has joined #openstack-kolla18:03
*** Pavo has joined #openstack-kolla18:05
*** mattmceuen has joined #openstack-kolla18:14
*** zhubingbing has quit IRC18:17
*** sdake_ has quit IRC18:20
openstackgerritSerguei Bezverkhi proposed openstack/kolla-kubernetes: Helm repository container and service  https://review.openstack.org/41747418:23
*** sdake has joined #openstack-kolla18:27
*** Pavo has quit IRC18:27
*** sdake has quit IRC18:29
*** sdake has joined #openstack-kolla18:39
kfox1111bummer... so close and so far... :)18:42
kfox1111almost got "the chip" running docker. but the kernel needs to be rebuilt it seems.18:43
*** sdake_ has joined #openstack-kolla18:49
*** sdake has quit IRC18:50
*** sayantan_ has joined #openstack-kolla18:58
*** sdake_ has quit IRC18:59
*** awiddersheim has joined #openstack-kolla19:38
*** awiddersheim has quit IRC20:01
*** sdake has joined #openstack-kolla20:06
*** sdake has quit IRC20:27
*** msimonin has joined #openstack-kolla20:40
portdirectkfox1111: ping20:51
portdirecthave you tested: https://review.openstack.org/#/c/417181/2 without haproxy? LGTM but would be more comfortable merging it if we ran it through the gate without haproxy once first.20:52
*** dave-mccowan has joined #openstack-kolla21:03
kfox1111portdirect: ping21:08
kfox1111portdirect: if you run it like: helm install --debug --dry-run ../foodir/nova-api-3.0.0-1.tgz --set haproxy_python_termination=false21:10
kfox1111you can see it drop out all the haproxy stuff as it use to.21:10
kfox1111I don't know if anyone tested it before as completely working in that mode, but I think it hasn't regressed any.21:11
portdirectkfox1111: weekend human lag - sry:)21:18
portdirectwill do - I rean the old one through the gat a couple of times with it disabled - but will check locally as you suggest - if that looks ok then WFM21:19
portdirectrean <-> run21:19
portdirectalso whats "the chip" sounds small and ARM?21:20
kfox1111thanks. :)21:21
kfox1111yeah. small $9 embeded system. :)21:21
kfox1111got a couple for christmas.21:21
kfox1111was curious what I could do with them. :)21:21
kfox1111looks like k8s might run on it, but the stock kernel doesn't have container stuff built into it.21:21
kfox1111otherwise, all the rest of the bits seem to be in order.21:22
portdirectoh - just updated google fu - looks cool :)21:22
portdirecti had a kubernetes cluster running on Pi2's - kinda fun but kinda pointless :D21:23
kfox1111curious to try k8s federation with it. :)21:23
kfox1111could potentially manage them relatively independently that way then.21:24
portdirectyeah for that sort of thing they are great (if the experience if the same as what I had)21:24
kfox1111most of the docs say it doesn't have much gpio,21:24
kfox1111but digging through them, they make reference to the lcd pins being able to be repurposed for gpio.21:24
portdirectwhere I got everything sunning sweet and then realised that the was noo oomph left to even serve a wordpress vanity site at an acceptable speed :D21:25
kfox1111so potentially a lot of gpio. :)21:25
kfox1111hehe. yah.21:25
kfox1111I was thinking collectd container and some gpio ports or something.21:25
kfox1111mostly would use k8s just as an os.21:25
kfox1111to make it easier to manage a number of them in parallel.21:26
kfox1111no idea if it would work at all, or if there is enough mem to make it work.21:26
kfox1111the one big drawback is only 512mb of ram.21:26
portdirectyeah - there are some really cool projects out there looking at k8s for HPC and IoT - funny how sometimes the needs overlap (give me x of the same thing in a lot of places)21:27
kfox1111yup.21:27
kfox1111I've got a physics compute element running out of k8s now.21:27
kfox1111so htc workload. but similar to hpc too.21:28
kfox1111same archetecture would work for hpc.21:28
portdirectoh also now i think the master build to docker hub ok - I'll try switching out the kolla-toolbox to use it - would be great to get rid of the pip install stuff.21:31
kfox1111yeah. it soulnded like we were suposed to get a 3.0.2 last week, but haven't seen it yet.21:37
kfox1111I'd really like to see that pip install go away.21:38
openstackgerritmelissaml proposed openstack/kolla-kubernetes: Fix the trailing backtick  https://review.openstack.org/41762521:44
openstackgerritMerged openstack/kolla-kubernetes: Fix the trailing backtick  https://review.openstack.org/41762521:51
sbezverkhey gents, how is it going?21:58
kfox1111going good. how about you?21:58
sbezverkfinished, groceries ;-) can relax now21:59
sbezverkit is cold brrr -12 celcius21:59
kfox1111yeah. its about 5 F here and snowing hard. :)22:00
sbezverkshow coming here too in a couple of days..22:01
sbezverkkfox1111: so the svc ps got merged right?22:01
kfox1111I think all 4 ps's are still in flight.22:02
kfox1111oh. one got wf'ed, but its dependent on others.22:02
kfox1111https://review.openstack.org/#/c/416744/22:03
kfox1111https://review.openstack.org/#/c/417181/22:03
kfox1111need wf's.22:03
kfox1111and so does https://review.openstack.org/#/c/417234/22:03
sbezverkdo you want to di both +2 and ack or portdirect is still around22:05
kfox1111lets do it right and get a second +2.22:06
sbezverkok, sounds good22:06
kfox1111still got to do a few more ps's anyway.22:07
portdirectsup with this? http://logs.openstack.org/44/416744/2/gate/gate-kolla-kubernetes-pep8-ubuntu-xenial/c251226/console.html22:09
kfox1111portdirect: looks like internet connectivity failed or one of the mirrors failed during the setup.22:10
portdirectrecheck?22:11
openstackgerritSerguei Bezverkhi proposed openstack/kolla: Add helm-repository image  https://review.openstack.org/41742622:11
portdirectIve undone my wf in the mean time22:11
kfox1111yeah. recheck couldn't hurt.22:11
kfox1111oh. that was a gate failure?22:12
kfox1111will have to wf it again to get it to test again22:12
portdirectyeah (gate-failure)22:13
kfox1111recheck does check jobs.22:13
kfox1111only way I know how to retrigger a (gate-failure) is to rewf it.22:13
portdirectah - need to head out - is sbezverk going to be around for a bit?22:13
sbezverkportdirect: yep22:14
portdirectgreat - could you wf those two?22:15
portdirect(as I wont be around for the next bit if it needs any more love)22:15
sbezverksure thing, no worries22:16
*** dave-mccowan has quit IRC22:17
portdirectsweet - thanks dude :) - laters kolla22:17
*** portdirect is now known as portdirect_away22:17
kfox1111portdirect: thx. l8r. :)22:17
*** sdake has joined #openstack-kolla22:18
*** salv-orlando has joined #openstack-kolla22:23
*** salv-orlando has quit IRC22:28
openstackgerritKevin Fox proposed openstack/kolla-kubernetes: Convert create-db/manage-db scripts to global api.  https://review.openstack.org/41762722:30
*** salv-orlando has joined #openstack-kolla22:33
*** sdake has quit IRC22:35
kfox1111sbezverk: can you please re-wf https://review.openstack.org/#/c/416744/22:42
*** sayantan_ has quit IRC22:43
openstackgerritKevin Fox proposed openstack/kolla-kubernetes: Convert create-db/manage-db scripts to global api.  https://review.openstack.org/41762722:46
*** portdirect_away is now known as portdirect22:52
kfox1111wb22:53
portdirectlol - no keeping me away :/22:53
kfox1111:)22:53
portdirectqq kolla-k8s docs - should we mark them as nonfunctional?22:53
kfox1111could you please re-wf https://review.openstack.org/#/c/416744/ ?22:53
kfox1111portdirect: yeah. probably should.22:54
kfox1111so much has changed.22:54
portdirectA few people have been trying them and having an understandably really bad time :/22:54
* kfox1111 nods.22:54
kfox1111thx22:55
portdirectsorry to offload this - but I'm not sure what the baest way to do that would be? any chance you (or someone else) could do it? Otherwise I'm happy to if someone sends me a few pointers as to the prefered way of phrasing this22:56
openstackgerritMerged openstack/kolla-kubernetes: Fix the mariadb/rabbitmq elements and add searchPaths.  https://review.openstack.org/41674422:57
kfox1111no idea really. maybe just something to the affect of "This documentation covers a much older version of kolla-kubernetes and is likely non-functional."22:58
portdirecta warning at the top of the page? that seems resonalbe22:58
kfox1111""We hope to have the documentation updated shortly."22:58
kfox1111yeah22:58
portdirectdo you know what the last git commit that did work (with the docs) was?22:59
portdirect(maybe in your old toolbox container?)22:59
kfox1111and a re-wf for this one too please: https://review.openstack.org/#/c/417181/23:00
kfox1111oh, probably before all the helm stuff started.23:01
kfox1111so, months ago. :/23:01
kfox1111though I think the minikube doc points to a docker container build,23:01
kfox1111so that one might still work.23:01
sbezverksafe bet would be around summit time23:04
sbezverkportdirect:  ^^23:04
openstackgerritMerged openstack/kolla-kubernetes: Switch python deployments to global api.  https://review.openstack.org/41718123:04
openstackgerritSerguei Bezverkhi proposed openstack/kolla-kubernetes: Helm repository container and service  https://review.openstack.org/41747423:05
*** saneax-_-|AFK is now known as saneax23:05
*** saneax is now known as saneax-_-|AFK23:07
openstackgerritKevin Fox proposed openstack/kolla-kubernetes: Convert create-db/manage-db scripts to global api.  https://review.openstack.org/41762723:08
sbezverkkfox1111: any idea you can suggest so I can test hekm repository at the gate? I mean while kolla's image is not merged? Another thing, would be good to have gate job for operators..23:10
kfox1111hm...23:11
kfox1111do we have an apache container that could be repurposed?23:11
kfox1111is the apache package installed in one of the base containers?23:11
portdirectsbezverk: unless I'm really off point could you not push it to hub yourself and then use that?23:12
kfox1111portdirect: https://review.openstack.org/#/c/417190/ can you remove/readd the wf?23:13
kfox1111please23:13
portdirectsbezverk: cheers (re git commit date) will hit that tomorrow23:13
kfox1111portdirect: kolla project really doesn't like putting things in the gate that point to unreleased stuff.23:14
sbezverkkfox1111: that is fine I will try to push that image gets merged soon23:16
sbezverkwhy jenkins -2 ^^^ PS, merge conflict?23:16
kfox1111sbezverk: k.23:16
kfox1111its parent failed a merge for a minute. it doesn't autorestest.23:16
portdirectunderstand but for testing it should be ok - our docs point to images in your docker hub account and used to use them in the gate as well - so though merging should'nt be done until then surely its fine to get sbezverk unblocked in the meantime?23:16
kfox1111portdirect: yeah. that doc should be fixed too.23:17
kfox1111I was working on upstreaming that container, but got sidetracked with all the helm reworking. :/23:18
portdirectrather worringly its currently the only source of truth for a jinja2 based install atm :)23:18
portdirect(so please dont push it again untill i extract the git commit's from it!)23:19
kfox1111yeah. I don't plan on touching it anymore.23:19
kfox1111any further changes would be upstream first.23:19
kfox1111though I think it will become unnessisary as soon as we can get the config gneration stuff streightnend out and into helm.23:20
sbezverklet's still keep jinja2 templates for historical purposes ;-)23:21
kfox1111even if we delete them from git, they will still be in the git histroy forever23:22
portdirectkfox1111: 'rm -rf .git; git init; git add .; git commit' FTW23:23
*** saneax-_-|AFK is now known as saneax23:23
* portdirect is being a troublemaker23:24
*** sayantan_ has joined #openstack-kolla23:24
kfox1111:)23:25
kfox1111git's a distributed system. its hard to erase all of history from the whole world. :)23:25
*** sayantan_ has quit IRC23:29
sbezverkkfox1111: portdirect: is it really important to run a process in the container as non root user?23:29
portdirectsbezverk: its really frowned upon not to23:30
kfox1111its better for security if you can run stuff as non-root.23:30
sbezverkI do not think att folks or sap run in non-root mode23:30
portdirect(if possible - many container security scanners will get unhappy)23:30
*** salv-orl_ has joined #openstack-kolla23:30
portdirectsbezverk: they will soon - very high on prority list23:30
sbezverkdamn :(23:30
sbezverkI am not sure how well helm serve will work as non-root23:31
portdirecthow come? pvc file permissions?23:31
kfox1111should work ok. all a helm repo needs is a webserver serving out the content.23:32
*** salv-orlando has quit IRC23:32
kfox1111by default it runs as the user you do stuff with too, not root.23:32
kfox1111running out of ~/.helm/repository/local23:33
sbezverkportdirect: I was more worried anout listen on 0.0.0.0:887923:34
portdirectthats fine i think - I'm running several helm serves like that  (not sub 1000 port)23:34
openstackgerritMerged openstack/kolla: Fix wrong register in ceph reconfigure task  https://review.openstack.org/41742723:34
kfox1111yeah. should be ok I think.23:35
kfox1111which port is used doens't really matter.23:35
kfox1111as that port is specified when registering the repo with helm anyway.23:35
sbezverkok will give it a try23:35
sbezverkotherwise I am afraid my image will not get merged23:36
kfox1111worst case, we should be able to use nginx/apache.23:37
kfox1111helm serv was intended just as a quick dirty way to run a server for devs.23:37
kfox1111not nessisarily to host production repo's.23:38
kfox1111well... I guess for testing, we might be able to repurpose the keystone container,23:39
kfox1111and upload a static configmap that turns it back to just sharing out /srv, and mount the pvc there?23:39
kfox1111or, I guess the command could just overwrite the file.23:40
portdirectif you are worried about that then i think a dedicated apache container would be the way to go - crazy heavy to carry around keystone for that - but ok for testing23:41
kfox1111yeah. thats what I meant, for now, we could test with keystone and then make a proper container for it.23:41
*** Pavo has joined #openstack-kolla23:41
kfox1111as the keystone container already contains apache.23:42
portdirect+123:42
sbezverkkfox1111: I am not sure if it is doable with nginx23:42
portdirectif we go deadicated I've a light preference for nginx, but as i type this is see sbezverk's comment23:42
sbezverkbecause I need bunch of things to build repo and to run helm_prebuild etc23:42
sbezverkso I am not sure if all this will co-exist well with nginx23:43
portdirectsbezverk: would it not make sense to have that all run in an init container that then dropped the resultant assets into an emptyDir for wahtever server to serve?23:43
kfox1111sbezverk: maybe we add helm to kolla-toolbox for the init container (or make a new toolbox?23:43
sbezverkkfox1111: kolla-tool box is getting fat23:44
sbezverkso much stuff in there23:44
v1k0d3nhey guys23:44
kfox1111yeah. it would be nice to make several smaller ones.23:44
portdirectyeah my vote would be for a helm serve container - even if we dont end up using it as a server23:44
kfox1111v1k0d3n: hey. :)23:44
portdirectword v1k0d3n23:44
kfox1111the helm docs made it sound like helm serv was just for testing.23:44
sbezverkv1k0d3n: hey man23:45
kfox1111I'd be for a helm binary container though, for use as a cli or tool.23:45
v1k0d3nare you guys experiencing any issues building images for 3.0.1 in ubuntu? not that everyone keeps up with this at all times...i think most of you are centos users.23:45
sbezverkkfox1111: I prefer to go with helm serve for now, and then move to nginx in future but in a separate container, without kolla-toolsbox23:46
*** msimonin has quit IRC23:46
portdirectv1k0d3n: could run a build to check for you23:46
sbezverkv1k0d3n: specific image is failing?23:46
portdirect^^23:46
kfox1111v1k0d3n: yeah, I don't try building from ubuntu very often.23:46
kfox1111sbezverk: just tryign to figure out the fastest way to get it into the gate. we do have access to apache.23:47
kfox1111a seperate container works for me.23:47
v1k0d3nportdirect / sbezverk keystone in this case, but attempting to use olso off of the stable branches.23:47
kfox1111I'd like to see a "client" container.23:47
*** sdake has joined #openstack-kolla23:47
kfox1111openstack cli/ kubernetes cli/ helm cli.23:47
v1k0d3nso i'm wondering if an elf is entering the build because of this...23:47
kfox1111sbezverk: well, in the gate, the gate itself already builds all the packages... we could make a tar out of them easily.23:49
kfox1111so we woudln't need a helm init container to test that bit.23:49
kfox1111and if we could get apache workign for serving, I think we can start testing in gate very soon.23:50
sbezverkkfox1111: if we have a separate job for testing operator with helm-repo, then we do not need to jump through the whoops23:51
*** sdake_ has joined #openstack-kolla23:51
kfox1111yeah. we could do that too.23:51
openstackgerritMerged openstack/kolla-kubernetes: Switch svc to use global api  https://review.openstack.org/41719023:51
sbezverkkfox1111: oh scv got merged finally23:51
kfox1111we can fork the helm-entrypont job to make an operator varient.23:51
kfox1111yay! :)23:51
sbezverkkfox1111: yep, I would prefer that23:52
sbezverkcause for normal jobs it will not be useful but for operator job it will be essential23:52
*** sdake has quit IRC23:53
kfox1111sbezverk: k. do you want to submit the new job or should I? it might be nice for someone other then me to know how to do it.23:53
*** msimonin has joined #openstack-kolla23:53
kfox1111I can point you at an example review and help you.23:53
sbezverkkfox1111: if it is not much extra work for you then please do, otherwise I will try to figure out23:54
sbezverkkfox1111: never mind23:54
sdake_hey peeps23:54
sbezverklet me figure it out with your help23:54
kfox1111sbezverk: its really easy in this case.23:55
sdake_sbezverk knowing how the gate works is super helpful :)23:55
kfox1111have a look at: https://review.openstack.org/#/c/412159/23:55
openstackgerritSerguei Bezverkhi proposed openstack/kolla: Add helm-repository image  https://review.openstack.org/41742623:55
sbezverksdake_: please check this ps https://review.openstack.org/417426, does it look better now to you?23:55
sbezverkportdirect: you too please23:56
sdake_looking - been hanging up lighting in my garage23:56
sdake_sbezverk few minor issues23:58

Generated by irclog2html.py 2.14.0 by Marius Gedminas - find it at mg.pov.lt!