Saturday, 2017-01-28

*** harlowja has quit IRC00:00
*** zhubingbing has joined #openstack-kolla00:02
*** lrensing has quit IRC00:03
*** eaguilar has joined #openstack-kolla00:07
david-lylels00:07
kfox1111total 000:08
kfox1111;)00:08
david-lylethe shame00:08
kfox1111its all good. :)00:08
david-lylefocus follows eyes is a setting I could get behind00:09
kfox1111+100:09
kfox1111or focus follows intent. :)00:09
david-lyleeven better00:09
kfox1111thought I don't know if I really want anyone/anything reading my mind.... ;)00:10
david-lylegood point00:10
kfox1111it might hurt someone/melt something. ;)00:10
david-lylehaha00:10
*** saneax is now known as saneax-_-|AFK00:15
*** sdake has joined #openstack-kolla00:15
*** goldyfruit has joined #openstack-kolla00:15
mgkwillany advice on how to do release notes for kolla? For example, what is the commit-id looking number at the end of release notes?00:16
kfox1111mgkwill: a tool called reno generates them.00:17
kfox1111http://docs.openstack.org/developer/reno/usage.html00:18
*** eaguilar has quit IRC00:18
mgkwillkfox1111: is there documentation related to .. nevermind. Thanks!00:18
kfox1111np. :)00:18
*** sdake_ has joined #openstack-kolla00:21
*** eaguilar has joined #openstack-kolla00:22
*** sdake has quit IRC00:22
*** jtriley has joined #openstack-kolla00:25
sdake_kfox1111 cn i get a erview on https://review.openstack.org/#/c/426380/00:25
sdake_sbezverk ^^00:26
kfox1111looks good to me.00:27
*** n0isyn0ise has quit IRC00:28
*** n0isyn0ise has joined #openstack-kolla00:30
*** erhudy has quit IRC00:30
openstackgerritSerguei Bezverkhi proposed openstack/kolla-kubernetes: PS adds glance cleanuip service  https://review.openstack.org/42643800:33
kfox1111sbezverk: you need to cleanup your cleanup commit message. :)00:33
sbezverkkfox1111: :)00:34
openstackgerritSerguei Bezverkhi proposed openstack/kolla-kubernetes: PS adds glance cleanup service  https://review.openstack.org/42643800:35
kfox1111thx. :)00:35
openstackgerritMerged openstack/kolla-kubernetes: Fix documentation error in development environment  https://review.openstack.org/42638000:36
kfox1111looks good.00:36
kfox1111it would be nice to get these into ceph_workflow* with a gate test.00:37
kfox1111otherwise, they may break and we wont know.00:37
kfox1111I cant really test them at the moment either. so its juts passign the sniff test.00:37
kfox1111could you add a set of tests for them?00:37
sbezverkkfox1111: do you want it in both workflows?00:37
sbezverkkfox1111: yeah how about adding cleanup tests before the basic tests?00:39
*** eaguilar has quit IRC00:39
sbezverkas a separete shell script?00:39
*** eaguilar has joined #openstack-kolla00:41
openstackgerritDuong Ha-Quang proposed openstack/kolla-ansible: Specify 'become' to neccesary tasks (general roles)  https://review.openstack.org/39868200:42
kfox1111both would be nice.00:46
kfox1111after basic tests?00:46
kfox1111if before, then its got to recreate everyting.00:46
kfox1111if after, it can ensure the system's working, tear it down, and then verify it all went away.00:46
kfox1111kubectl get pods | wc -l == 0 ?00:46
*** rhallisey has quit IRC00:47
kfox1111and before exiting, echo show databases | mysql | wc -l == 100:47
openstackgerritKevin Fox proposed openstack/kolla-kubernetes: Check to see if Horizon is working in the gate.  https://review.openstack.org/42602500:48
*** sayantani01 has quit IRC00:50
sbezverkkfox1111: I do not think it is the right check as pods are properly removed after helm delete00:50
sbezverkwat is not gets removed is DB and service from keystone DB00:50
kfox1111hm... I guess it would only work with microservices, but could run the jobs,00:51
kfox1111then check in keystone that the endpoitns go away, and check in mariadb the db's get dropped.00:51
*** eaguilar has quit IRC00:51
kfox1111then helm ls | while read line; do helm delete --purge $line; done00:52
kfox1111and kubectl get pods to see whats left.00:52
sbezverkhere is what I think to do http://paste.openstack.org/show/596785/00:52
kfox1111yeah.00:52
sbezverkI will do service first as it is easier00:52
kfox1111the last bit will take a bunch of time.00:53
kfox1111checking that the entries are gone from the db/keystone would be much faster.00:53
sbezverkkfox1111: well you need to run openstack command00:55
sbezverkbut for mariadb it will be difficult00:55
sbezverkI do not know how to run mysql commands from cli00:55
kfox1111should be able to just install the mariadb client on the host.00:55
sbezverkopensatck client is install on the host00:56
kfox1111echo 'show databases;' | mariadb -h $ip -u $username -p $password mysql00:56
sbezverkok then I can run opensatck service list00:56
kfox1111shoudl do the trick or something very similar.00:56
kfox1111yeah.00:56
kfox1111sorry. mean,00:57
kfox1111echo 'show databases;' | mysql -h $ip -u $username -p $password mysql00:57
sbezverkcool I will try it then to run after basic tests00:57
kfox1111k. thanks. :)00:58
*** unicell has quit IRC00:59
kfox1111sbezverk: ok, so, versions....01:04
kfox1111with horizon backend, you have multiple versions running at a time.01:04
kfox1111the version field as written isn't very descriptive.01:05
kfox1111its just a uniue version field generated by the user. it can be anything really.01:05
kfox1111it is the unique identifier of the instantiation of the horizon backend.01:05
sbezverkkfox1111: k I suspected but wanted to confirm01:06
kfox1111easiest thing is to use an incrementing number starting at 1.01:06
kfox1111and bump it whenver you change anything.01:06
kfox1111the name is confusing, but not sure what to call it that would be less so.01:06
kfox1111any ideas?01:06
sbezverkconfig_generations?01:07
sbezverk:) maybe more confusing01:08
kfox1111hmm. interesting.01:08
sbezverkin bash I can use != right?01:08
kfox1111yeah. not sure its less confusing. but generation is used for this case too.01:08
kfox1111in bash, != is for strings, -ne is for numbers.01:08
sbezverkwc -l return number?01:08
kfox1111and you can't compare a blank string directly.01:09
kfox1111yeah. wc -l will give a number of lines.01:09
kfox1111so like:01:09
kfox1111l=$(cat /etc/passwd | wc -l)01:09
kfox1111[ $l -ne 0 ] ....01:09
sbezverkcoolif [ $(openstack service list --column Name --format value | grep glance | wc -l) -ne 0]; then01:09
kfox1111yeah. I think that would work.01:10
sbezverkkfox1111: for mariadb I will need to get password from secret, unless you already have it somewhere in non encoded form01:12
kfox1111it was generated from kolla. I think kolla has it still.01:13
openstackgerritSerguei Bezverkhi proposed openstack/kolla-kubernetes: PS adds glance cleanup service  https://review.openstack.org/42643801:13
kfox1111sbezverk: python -c 'import yaml; print yaml.load(open("/etc/kolla/passwords.yml"))["database_password"]'01:15
kfox1111should do the trick.01:15
* kfox1111 really wishes there was a yaml version of jq.01:15
sbezverkkfox1111: ah cool, that was quick!!!01:15
kfox1111:)01:15
kfox1111had to do that kind of thing more then I'd like to admit. ;)01:15
sbezverkI pushed it with just opensatck commands to test, after will add mysql thing01:15
kfox1111cool.01:16
kfox1111sbezverk: a note in the review. it will likely fail without a wait for pods.01:20
kfox1111the other comment is about: https://xkcd.com/327/ :)01:22
kfox1111hehe. thats all sort of awesome...01:28
kfox1111http://logs.openstack.org/25/426025/9/check/gate-kolla-kubernetes-deploy-ubuntu-binary-2-iscsi-nv/50f8091/logs/horizon.png01:28
kfox1111sdake_: -----^01:28
sdake_kfox1111 lol01:31
sdake_kfox1111 cool png output - i like that01:32
sdake_kfox1111 wish kolla-ansible's software gating was as strong as kolla-kubernetes01:32
kfox1111code's pretty simple: https://review.openstack.org/#/c/426025/6/tests/bin/horizon_test.py01:32
sdake_i did review thte tes code yesterday or the day before01:32
kfox1111I added the png generation this morning.01:33
kfox1111was sooo easy.01:33
sdake_cool01:33
kfox1111actually, this version.01:33
kfox1111https://review.openstack.org/#/c/426025/9/tests/bin/horizon_test.py01:33
kfox11112 lines. :)01:33
kfox1111half of them just making pep 8 not complain about line length. ;)01:33
kfox1111stupid anchient checks for character limits no one ever uses anymore... ;)01:34
kfox1111so, that test is almost done.. seems like there is a slight race condition somewhere though...01:35
sbezverkkfox1111: could you check my PS it failed on all , but it seems way before my change01:36
sbezverkhttps://review.openstack.org/#/c/426438/01:36
kfox1111hmm.. faild very quickly...01:36
kfox1111all in the same place...01:37
kfox1111very strange...01:37
kfox1111oh.01:39
kfox1111up a little higher, there is a pythong crash dump.01:39
kfox1111from /helm_prebuild_microservices.py01:40
sbezverknvm all.yaml was missing "01:40
kfox1111so, now I need to figure out how to break horizon in the gate, without crashing it, so we can test the test. :)01:42
kfox1111well, later I guess.01:42
kfox1111gotta head out.01:42
kfox1111l8r all.01:42
openstackgerritKevin Fox proposed openstack/kolla-kubernetes: Check to see if Horizon is working in the gate.  https://review.openstack.org/42602501:44
sbezverkhave good one01:44
sbezverkkfox1111 ^^01:44
openstackgerritSerguei Bezverkhi proposed openstack/kolla-kubernetes: PS adds glance cleanup service  https://review.openstack.org/42643801:47
*** crushil has joined #openstack-kolla01:49
*** sdake_ has quit IRC01:49
*** sayantani01 has joined #openstack-kolla01:50
*** Syffs has quit IRC01:51
*** tonanhngo has quit IRC01:57
openstackgerritSerguei Bezverkhi proposed openstack/kolla-kubernetes: PS adds glance cleanup service  https://review.openstack.org/42643802:02
sayantani01guys, can I please have some eyes on https://review.openstack.org/#/c/426105 ?02:05
openstackgerritSerguei Bezverkhi proposed openstack/kolla-kubernetes: PS adds glance cleanup service  https://review.openstack.org/42643802:12
*** zhubingbing has quit IRC02:13
*** zhubingbing has joined #openstack-kolla02:14
*** PramodJ has joined #openstack-kolla02:36
*** sayantani01 has quit IRC02:38
*** MasterOfBugs has joined #openstack-kolla02:38
*** sayantani01 has joined #openstack-kolla02:38
*** pramodrj07 has quit IRC02:39
*** PramodJ has quit IRC02:41
*** MasterOfBugs has quit IRC02:47
*** sdake has joined #openstack-kolla02:52
*** zhubingbing has quit IRC03:03
sdakekfox1111 fwiw he reason the length checks are in the pep8 gtes is to fit in gerrit properly03:05
sdakeotherwise harder to review03:05
*** tonanhngo has joined #openstack-kolla03:09
*** zhubingbing has joined #openstack-kolla03:13
Pavoanyone know where mac osx puts things it installs using pip, I installed kolla-ansible using pip but its not showing up in /usr/share03:13
openstackgerritJeffrey Zhang proposed openstack/kolla-ansible: [TEST][MASTER][KOLLA-ANSIBLE]  https://review.openstack.org/42278603:14
*** zhubingbing has quit IRC03:16
*** sdake has quit IRC03:17
*** hfu has joined #openstack-kolla03:28
*** sdake has joined #openstack-kolla03:53
openstackgerritMerged openstack/kolla: rootwrap filters is removed in networking-sfc  https://review.openstack.org/42626304:03
*** hfu has quit IRC04:04
*** hfu has joined #openstack-kolla04:05
*** hfu has quit IRC04:06
*** hfu has joined #openstack-kolla04:06
*** hfu has quit IRC04:06
*** hfu has joined #openstack-kolla04:07
*** hfu has quit IRC04:07
*** prameswar has joined #openstack-kolla04:07
*** hfu has joined #openstack-kolla04:08
*** hfu has quit IRC04:08
*** crushil has quit IRC04:11
*** crushil has joined #openstack-kolla04:14
*** Slower has quit IRC04:30
*** Slower has joined #openstack-kolla04:30
openstackgerritSerguei Bezverkhi proposed openstack/kolla-kubernetes: PS adds glance cleanup service  https://review.openstack.org/42643804:31
*** zhubingbing has joined #openstack-kolla04:35
*** prameswar has quit IRC04:38
*** sdake has quit IRC04:40
*** sdake has joined #openstack-kolla04:40
openstackgerritjianyi proposed openstack/kolla-ansible: Add zun ansible role  https://review.openstack.org/41617904:42
*** hfu has joined #openstack-kolla05:00
*** crushil has quit IRC05:02
openstackgerritvenkatamahesh proposed openstack/kolla-ansible: Fix a typo in config.yml  https://review.openstack.org/42646705:02
openstackgerritSerguei Bezverkhi proposed openstack/kolla-kubernetes: PS adds glance cleanup service  https://review.openstack.org/42643805:11
*** sdake_ has joined #openstack-kolla05:16
*** sdake has quit IRC05:19
*** goldyfruit has quit IRC05:24
*** zhurong has joined #openstack-kolla05:29
*** sayantani01 has quit IRC05:45
*** sdake_ has quit IRC05:45
*** hfu has quit IRC05:57
*** prameswar has joined #openstack-kolla05:59
*** hfu has joined #openstack-kolla06:00
*** hfu has quit IRC06:00
*** mdnadeem has joined #openstack-kolla06:00
*** hfu has joined #openstack-kolla06:00
*** hfu has quit IRC06:01
*** saneax-_-|AFK is now known as saneax06:01
*** hfu has joined #openstack-kolla06:01
*** hfu has quit IRC06:01
*** unicell has joined #openstack-kolla06:03
*** sayantani01 has joined #openstack-kolla06:04
*** tonanhngo has quit IRC06:11
*** tonanhngo has joined #openstack-kolla06:12
*** tonanhngo has quit IRC06:16
openstackgerritsayantani proposed openstack/kolla-ansible: Update Kolla-Ansible documents  https://review.openstack.org/42635206:20
*** hfu has joined #openstack-kolla06:26
*** saneax is now known as saneax-_-|AFK06:28
*** sayantani01 has quit IRC06:29
*** sayantani01 has joined #openstack-kolla06:30
*** PT has joined #openstack-kolla06:41
*** PT has quit IRC06:50
*** zhurong has quit IRC06:58
*** bmace_ has quit IRC07:07
*** bmace_ has joined #openstack-kolla07:08
*** hfu has quit IRC07:19
*** prameswar has quit IRC07:28
*** simon-AS559 has joined #openstack-kolla07:33
*** sayantani01 has quit IRC08:05
*** simon-AS559 has quit IRC08:10
openstackgerritzhubingbing proposed openstack/kolla: Fix code format ceilometer_compute dockerfile  https://review.openstack.org/42622408:21
openstackgerritzhubingbing proposed openstack/kolla: remove /var/log/trove in trove dockerfile  https://review.openstack.org/42625408:23
*** MasterOfBugs has joined #openstack-kolla08:27
openstackgerritzhubingbing proposed openstack/kolla: Fix swift dockerfile  https://review.openstack.org/42626008:35
*** mgoddard has joined #openstack-kolla09:00
*** haplo37 has quit IRC09:35
*** haplo37 has joined #openstack-kolla09:42
*** apuimedo has quit IRC09:58
*** MasterOfBugs has quit IRC09:58
*** tonanhngo has joined #openstack-kolla10:03
*** tonanhngo has quit IRC10:07
*** pbourke has quit IRC10:31
*** pbourke has joined #openstack-kolla10:31
*** sdake has joined #openstack-kolla10:44
*** matrohon has joined #openstack-kolla10:46
*** sdake_ has joined #openstack-kolla10:46
*** sdake has quit IRC10:50
*** PT has joined #openstack-kolla10:50
*** mgoddard has quit IRC11:01
*** hachi has quit IRC11:04
*** mdnadeem has quit IRC11:16
*** PT has quit IRC11:18
*** Syffs has joined #openstack-kolla11:20
*** jtriley has quit IRC11:58
*** sdake has joined #openstack-kolla12:13
*** sdake_ has quit IRC12:15
*** zioproto has joined #openstack-kolla12:17
*** zioproto has quit IRC12:24
*** saneax-_-|AFK is now known as saneax12:40
*** rhallisey has joined #openstack-kolla12:51
openstackgerritMathieu Rohon proposed openstack/kolla: Update 'addUser' to 'createUser'  https://review.openstack.org/42650313:06
*** rhallisey has quit IRC13:59
*** eaguilar has joined #openstack-kolla14:09
*** msimonin has quit IRC14:14
*** msimonin has joined #openstack-kolla14:14
*** msimonin has quit IRC14:15
*** sdake has quit IRC14:16
*** ipsecguy has quit IRC14:31
*** eaguilar has quit IRC14:38
openstackgerritSerguei Bezverkhi proposed openstack/kolla-kubernetes: PS adds glance cleanup service  https://review.openstack.org/42643814:48
*** athomas has joined #openstack-kolla14:52
openstackgerritJeffrey Zhang proposed openstack/kolla: Fix the murano policy file path  https://review.openstack.org/42623715:01
*** sdake has joined #openstack-kolla15:03
*** hfu has joined #openstack-kolla15:19
*** sps_ has joined #openstack-kolla15:19
*** sps_ has quit IRC15:21
*** ipsecguy has joined #openstack-kolla15:30
*** msimonin has joined #openstack-kolla15:48
*** goldyfruit has joined #openstack-kolla15:49
*** hfu has quit IRC15:50
*** hfu has joined #openstack-kolla15:52
*** hfu has quit IRC15:52
*** hfu has joined #openstack-kolla15:53
*** hfu has quit IRC15:53
*** hfu has joined #openstack-kolla15:54
*** hfu has quit IRC15:54
*** sdake has quit IRC15:56
*** Syffs has quit IRC16:02
*** sdake has joined #openstack-kolla16:05
*** sayantani01 has joined #openstack-kolla16:13
openstackgerritSerguei Bezverkhi proposed openstack/kolla-kubernetes: PS adds glance cleanup service  https://review.openstack.org/42643816:32
*** athomas has quit IRC16:36
*** matrohon has quit IRC16:38
*** sayantan_ has joined #openstack-kolla16:41
*** sayantani01 has quit IRC16:41
*** crushil has joined #openstack-kolla17:04
*** crushil has quit IRC17:09
*** crushil has joined #openstack-kolla17:09
*** saneax is now known as saneax-_-|AFK17:21
openstackgerritSerguei Bezverkhi proposed openstack/kolla-kubernetes: PS adds glance cleanup service  https://review.openstack.org/42643817:29
*** crushil has quit IRC17:45
*** eaguilar has joined #openstack-kolla17:47
*** eaguilar has quit IRC17:57
*** sdake_ has joined #openstack-kolla18:55
*** sdake has quit IRC18:56
*** sayantan_ has quit IRC18:59
kfox1111sdake_: its harder to review too, when you have to add 10-20% more code just to make it not complain.19:12
*** zioproto has joined #openstack-kolla19:19
*** zioproto has quit IRC19:21
kfox1111I just think its silly in the day and age of 4k screens (or at least 1080p) to have a 80 char limit. 100 or 120 would be much better.19:28
SamYaplekfox1111: the rust language and community have landed on 100 char19:36
*** sayantani01 has joined #openstack-kolla19:38
kfox1111interesting.19:42
kfox1111that would be nice.19:43
*** sayantani01 has quit IRC19:43
*** sayantani01 has joined #openstack-kolla20:04
sdake_kfox1111 huh?20:06
sdake_oh20:06
*** zioproto has joined #openstack-kolla20:09
*** jtriley has joined #openstack-kolla20:12
*** rhallisey has joined #openstack-kolla20:21
*** zioproto has quit IRC20:21
*** unicell has quit IRC20:21
*** zioproto has joined #openstack-kolla20:29
*** sdake has joined #openstack-kolla20:40
*** sdake_ has quit IRC20:42
*** skramaja_ has joined #openstack-kolla20:50
*** skramaja has quit IRC20:54
*** jtriley has quit IRC20:56
*** goldyfruit has quit IRC21:02
openstackgerritKevin Fox proposed openstack/kolla-kubernetes: Check to see if Horizon is working in the gate.  https://review.openstack.org/42602521:03
*** zioproto has quit IRC21:09
*** sdake has quit IRC21:26
*** zioproto has joined #openstack-kolla21:28
*** zioproto has quit IRC21:29
*** zioproto has joined #openstack-kolla21:29
*** l4yerffeJ has quit IRC21:34
*** l4yerffeJ has joined #openstack-kolla21:34
*** haplo37_ has quit IRC21:36
*** haplo37_ has joined #openstack-kolla21:38
*** sdake has joined #openstack-kolla21:59
*** breitz has quit IRC22:02
*** breitz has joined #openstack-kolla22:02
*** skramaja has joined #openstack-kolla22:09
*** skramaja_ has quit IRC22:09
*** msimonin has quit IRC22:23
*** msimonin has joined #openstack-kolla22:23
*** msimonin has quit IRC22:24
*** msimonin has joined #openstack-kolla22:24
*** msimonin has quit IRC22:25
*** msimonin has joined #openstack-kolla22:25
*** msimonin has quit IRC22:26
*** msimonin has joined #openstack-kolla22:26
*** msimonin has quit IRC22:26
*** msimonin has joined #openstack-kolla22:27
*** msimonin has quit IRC22:27
*** unicell has joined #openstack-kolla22:37
*** sdake has quit IRC22:44
*** saneax-_-|AFK is now known as saneax22:46
openstackgerritKevin Fox proposed openstack/kolla-kubernetes: Check to see if Horizon is working in the gate.  https://review.openstack.org/42602522:50
openstackgerritSerguei Bezverkhi proposed openstack/kolla-kubernetes: PS adds glance cleanup service  https://review.openstack.org/42643822:53
sbezverkkfox1111: ping23:08
*** lrensing has joined #openstack-kolla23:15
*** lrensing has quit IRC23:24
openstackgerritSerguei Bezverkhi proposed openstack/kolla-kubernetes: PS adds glance cleanup service  https://review.openstack.org/42643823:29
*** goldyfruit has joined #openstack-kolla23:30
*** sdake has joined #openstack-kolla23:30
*** sdake_ has joined #openstack-kolla23:39
*** sdake has quit IRC23:44

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