Monday, 2016-08-22

*** vikasc has joined #openstack-zun00:08
*** xiangxinyong_ is now known as xiangxinyong01:02
*** yanyanhu has joined #openstack-zun01:24
*** hongbin has joined #openstack-zun01:36
openstackgerritMerged openstack/higgins: Load wsgi apps with paste.deploy  https://review.openstack.org/35761501:57
*** GB21 has joined #openstack-zun02:39
*** vikasc has left #openstack-zun02:42
*** yuanying has quit IRC02:46
*** GB21 has quit IRC02:47
*** yuanying has joined #openstack-zun02:50
*** flwang has quit IRC03:16
openstackgerritHongbin Lu proposed openstack/higgins: Add more parameters for container create  https://review.openstack.org/35837803:20
*** flwang has joined #openstack-zun03:26
*** yuanying has quit IRC03:45
openstackgerritHongbin Lu proposed openstack/python-zunclient: Added more properties to Container  https://review.openstack.org/35566903:47
*** yuanying has joined #openstack-zun03:48
*** janki has joined #openstack-zun04:20
*** hongbin has quit IRC04:48
*** sudipto has joined #openstack-zun05:43
*** sudipto_ has joined #openstack-zun05:44
sudiptoQiming, eliqiao : is there a zun con file like /etc/zun/zun.conf yet?05:44
Qimingsudipto, sorry, I have no idea, :)05:44
*** yasemin has joined #openstack-zun05:46
yanyanhuhi, sudipto, you can run tools/gen-config to generate an example configure file05:56
yanyanhugenerated conf file will be located at etc/zun folder05:57
sudiptook sure thanks!06:18
*** chandankumar has joined #openstack-zun06:30
sudiptoyanyanhu, can you tell me what all parameters need the setting inside the CONF file? I am looking to do this setup without a devstack installation...so was willing to know about the info w.r.t creating tables/keystone users - plus the CONF entries that have to be made... (if you have the info handy) - else i would like to build one with you.06:40
*** chandankumar has quit IRC06:41
sudiptoTo give you more context, I am actually trying to do this using containers. I have a  mysql container and a keystone container with rabbitmq - I plan to run zun inside another container which will talk to these containers to establish a dev environment.06:41
*** chandankumar has joined #openstack-zun06:41
yanyanhuhi, sudipto, sorry I also have no idea about how to manually config all these options... my installation was also based on devstack before06:42
sudiptook let me try and see if i can achieve something like that.06:43
yanyanhumaybe you can ask eliqiao or hongbin for help on this06:43
yanyanhusudipto, BTW, that is cool for this try :) after Zun is ready, I think we can propose to kolla to containerize it06:44
sudiptoyanyanhu, yeah - also i felt it would make it easy for developers to bootstrap into zun for their work easily06:45
yanyanhuthat's for sure06:45
*** dfflanders has joined #openstack-zun06:54
*** mlekkas_ has joined #openstack-zun08:09
*** chandankumar has quit IRC08:32
*** chandankumar has joined #openstack-zun08:33
*** yuanying has quit IRC08:34
*** yuanying has joined #openstack-zun08:35
*** yuanying has quit IRC08:47
*** yuanying has joined #openstack-zun08:49
*** yanyanhu has quit IRC09:21
*** sheel has joined #openstack-zun09:22
*** bharatht_ has joined #openstack-zun10:22
*** bharatht_ is now known as tbh10:22
*** dfflanders has quit IRC10:25
*** janki has quit IRC10:30
*** janki has joined #openstack-zun10:31
openstackgerritMerged openstack/higgins: Fix i18n marker error in docker driver  https://review.openstack.org/35696610:46
openstackgerritbharaththiruveedula proposed openstack/higgins: Add validation to container memory value  https://review.openstack.org/35834710:56
openstackgerritMerged openstack/higgins: devstack: run zun-compute in docker group  https://review.openstack.org/35698410:57
tbheliqiao, thanks for the review, addressed your comments https://review.openstack.org/35834710:57
*** GB21 has joined #openstack-zun11:02
*** openstackgerrit has quit IRC11:03
*** openstackgerrit has joined #openstack-zun11:04
*** tbh has quit IRC11:21
*** sudipto has quit IRC11:23
*** sudipto_ has quit IRC11:23
*** openstackstatus has quit IRC11:36
*** openstackstatus has joined #openstack-zun11:39
*** ChanServ sets mode: +v openstackstatus11:39
*** shu-mutou-OFF has quit IRC12:08
*** GB21 has quit IRC12:43
*** mikelk has joined #openstack-zun13:31
*** hongbin has joined #openstack-zun13:33
*** sudipto has joined #openstack-zun14:08
*** sudipto_ has joined #openstack-zun14:08
sudiptohongbin, hello - do you have sometime now?14:10
hongbinsudipto: yes14:14
hongbinsudipto: sup14:14
sudiptohongbin, basically i am trying to create a very basic bootstrap environment for zun without using devstack. For this I have created 2 containers - 1. running mysql 2. running keystone + rabbit14:15
sudiptoI want to create a 3rd container which would be linked to the 2nd one...which would have openstack-zun14:16
hongbinyes....14:16
sudiptoIn order to do this, I would need some help - w.r.t the conf parameters we set - plus a db_sync script14:16
hongbinok14:17
hongbinFor the DB, it is this one: connection=mysql://root:password@localhost/zun14:18
hongbinKeystone is complicated14:18
sudiptoCan you help me with that? I couldn't find good documentation w.r.t that... basically - all we need to do is - in the third container : 1. Install docker 2. Install zun 3. Have scripts to populate the CONF parameters and the db_sync script. Start zun 4. Run it in privileged mode.14:18
sudiptoOk - so at this point in time, I just need the connection parameter? Is there a db_sync file or we need to create it?14:20
sudiptoHow did you create the database table?14:20
hongbinFinding the guide14:20
hongbinSee here: https://github.com/openstack/higgins/blob/master/doc/source/dev/quickstart.rst14:21
hongbinFor DB creation14:21
hongbinmysql -h 127.0.0.1 -u root -ppassword mysql <<EOF CREATE DATABASE IF NOT EXISTS zun DEFAULT CHARACTER SET utf8; GRANT ALL PRIVILEGES ON zun.* TO     'root'@'%' IDENTIFIED BY 'password' EOF14:21
hongbinThen, run db upgrade14:21
hongbinzun-db-manage upgrade14:21
hongbinFor docker, there is no such documentation yet14:22
sudiptoThis helps!!14:22
hongbinBut see Eli's patch: https://review.openstack.org/#/c/356984/14:22
sudiptoAlrite, let me start with the first link and then move to this one.14:23
sudiptoIf you are here in the channel, i will keep you posted.14:24
*** sheel has quit IRC14:26
hongbinAwesome14:26
hongbinThe document might be outdate. Just let me know if anyting that is wrong14:26
sudiptoyeah sure.14:28
*** janki has quit IRC15:12
*** chandankumar has quit IRC15:40
*** sudipto has quit IRC15:42
*** sudipto_ has quit IRC15:42
*** sudipto_ has joined #openstack-zun16:05
*** sudipto has joined #openstack-zun16:05
*** janki has joined #openstack-zun16:09
*** chandankumar has joined #openstack-zun16:28
sudiptohongbin, No module named set_cors_middleware_defaults any idea?16:47
sudiptoI commented that out in the setup.cfg16:50
*** dims has quit IRC16:54
*** dims has joined #openstack-zun16:56
*** janki has quit IRC17:00
*** sudipto has quit IRC17:01
*** sudipto_ has quit IRC17:01
*** mikelk has quit IRC17:13
*** tbh has joined #openstack-zun17:24
*** chandankumar has quit IRC18:17
*** tbh has quit IRC18:52
*** test_ has joined #openstack-zun22:29
test_Hi all22:29
*** test_ has quit IRC22:30
*** hongbin has quit IRC22:51
*** shu-mutou has joined #openstack-zun23:42

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