*** hongbin_ has quit IRC | 00:07 | |
*** catintheroof has joined #openstack-zun | 00:35 | |
openstackgerrit | feng.shengqin proposed openstack/zun master: list_containers which are created by zun https://review.openstack.org/450123 | 00:57 |
---|---|---|
*** kevinz has joined #openstack-zun | 01:23 | |
*** yanyanhu has joined #openstack-zun | 01:24 | |
openstackgerrit | feng.shengqin proposed openstack/python-zunclient master: Add support for updating multiple containers https://review.openstack.org/448430 | 01:39 |
*** catintheroof has quit IRC | 01:41 | |
*** zhurong has joined #openstack-zun | 01:52 | |
*** lakerzhou has joined #openstack-zun | 02:01 | |
*** Shunli has joined #openstack-zun | 02:14 | |
*** diga has joined #openstack-zun | 02:21 | |
*** hongbin has joined #openstack-zun | 02:30 | |
openstackgerrit | Hongbin Lu proposed openstack/zun master: Properly tear down zun-api at wsgi mode https://review.openstack.org/450521 | 02:32 |
*** vikasc has quit IRC | 02:55 | |
hongbin | hi all, team meeting will start in about 2 minutes at #openstack-meeting | 02:57 |
openstackgerrit | Merged openstack/python-zunclient master: Remove log translations https://review.openstack.org/447834 | 02:58 |
*** vikasc has joined #openstack-zun | 03:18 | |
*** vikasc has quit IRC | 03:29 | |
openstackgerrit | Merged openstack/zun master: Fix an issue in zun-api start https://review.openstack.org/450333 | 03:31 |
*** zhurong has quit IRC | 03:57 | |
*** pksingh has joined #openstack-zun | 04:00 | |
mkrai | Hi hongbin | 04:00 |
mkrai | I wanted to discuss about this patch | 04:01 |
mkrai | #link https://review.openstack.org/#/c/448430/ | 04:01 |
hongbin | mkrai: go ahead | 04:01 |
mkrai | Feng is not here it seems | 04:01 |
mkrai | I don't think its good idea to update multiple containers at a time | 04:01 |
mkrai | What's your opinion on it? | 04:01 |
mkrai | Or do we discuss in our next meeting when feng is available? | 04:02 |
hongbin | i don't have strong opinion on this one | 04:02 |
hongbin | i think i am slightly lean on your side | 04:02 |
hongbin | yes, we can discuss it at the next meeting or discuss it in hte review | 04:03 |
mkrai | thanks | 04:03 |
kevinz | do we have a continuous discussion about container composition? | 04:03 |
mkrai | review would be better to discuss | 04:03 |
kevinz | or do it in the gerrit. So that I can begin for a WIP patch of this | 04:04 |
hongbin | kevinz: if you want, feel free to continue, i guess most people are still here | 04:04 |
kevinz | Yeah that will be good | 04:04 |
kevinz | https://etherpad.openstack.org/p/zun-container-composition | 04:04 |
kevinz | I've add a draft about the capsule Object field, and capsule API. | 04:05 |
*** pksingh has quit IRC | 04:05 | |
hongbin | i saw there is a "v1." prefix for each resource? | 04:07 |
kevinz | just a api version about this. we can remove it | 04:07 |
kevinz | In the line 60 there is a capsule object draft | 04:08 |
mkrai | kevinz: It seems we store the containers info as a list of dictionary Right? | 04:08 |
mkrai | Is it possible or good idea to have two tables for containers and capsules? | 04:08 |
mkrai | and store the container_id in capsule's containers field | 04:09 |
kevinz | mkrai: now my propersal is store the containers in our origin container table. And store the container UUID in capsule | 04:09 |
kevinz | so that capsule is aware of that | 04:09 |
kevinz | Yeah, capsule and container is two tables | 04:10 |
mkrai | Ok thanks | 04:10 |
kevinz | One of my concern is about "events", do we need to track the working process for the capsule? | 04:11 |
kevinz | the same as we use "kubectl describe pod" to get pod events | 04:11 |
hongbin | i think event is optional | 04:12 |
hongbin | but yes, i think it would be good to have "zun events ..." | 04:13 |
hongbin | or zun capsule-events ... | 04:13 |
kevinz | hongbin: Haha, right it would be good . will be easy to track the status about the pod | 04:13 |
kevinz | capsule | 04:14 |
hongbin | kevinz: i saw user_id and project_id are in the yaml file? | 04:14 |
kevinz | hongbin: Not in the yaml file. just in the Object field | 04:15 |
hongbin | kevinz: perhaps it is more clear to give a sample capsule yaml file instead | 04:16 |
mkrai | kevinz: its there in v1.capsule | 04:16 |
kevinz | May be I need to remove the first 58 lines in case of discurbing you. | 04:16 |
kevinz | OK, the doc is lacking of a yaml file. I will add | 04:16 |
*** lakerzhou has quit IRC | 04:17 | |
hongbin | yes, i will take a look at the etherpad for the sample yaml file again | 04:17 |
kevinz | hongbin:Cool. I will finish this and ping you and mkrai ASAP | 04:18 |
hongbin | kevinz: one more thing, from the last week, we discuss whether to duplicate capsule with container | 04:18 |
hongbin | personally, i have an idea about that | 04:19 |
kevinz | hongbin: yeah, go ahead | 04:19 |
hongbin | to minimize the duplication, i would propose to make capsule as a wrapper of sandbox, [volume, network, ...] | 04:19 |
hongbin | then, for each container, it has an option to specify a capsule | 04:20 |
hongbin | for example | 04:20 |
hongbin | zun run --capsule xxx cirros | 04:20 |
hongbin | this contianer will run on a capsule | 04:20 |
mkrai | hongbin: Does it mean the container can't exist outside capsule? | 04:21 |
hongbin | zun run cirros # this container will run without a capsule | 04:21 |
hongbin | mkrai: it can, the concept of capsule should be optional | 04:21 |
kevinz | "zun run cirros" will run without sandbox? | 04:21 |
hongbin | kevinz: yes | 04:22 |
hongbin | i think sandbox could be optional | 04:22 |
hongbin | (after kuryr integration is done) | 04:22 |
mkrai | ok it makes sense after kuryr integration | 04:23 |
hongbin | however, if users want to use nova driver, sandbox is a must | 04:23 |
mkrai | so capsule should only use docker driver | 04:23 |
mkrai | Not nova-docker driver | 04:23 |
hongbin | i think capsule can be used in all drivers (if driver implements it) | 04:23 |
mkrai | Sorry guys I have got another meeting at 10 | 04:24 |
mkrai | Will leave now | 04:24 |
kevinz | mkrai: OK bye | 04:24 |
hongbin | mkrai: ok, thanks for providing your inputs here | 04:24 |
hongbin | mkrai: see you later | 04:24 |
mkrai | kevinz: hongbin bye | 04:25 |
*** vikasc has joined #openstack-zun | 04:25 | |
hongbin | kevinz: that is my idea, needs to discuss with others about that | 04:25 |
kevinz | hongbin: I lean on your side about capsule is an extension of sandbox | 04:25 |
hongbin | kevinz: ack | 04:26 |
hongbin | anyway, i need to leave as well, it is late tonight | 04:26 |
kevinz | OK , thanks for your comments hongbin | 04:26 |
kevinz | Have a good night | 04:27 |
hongbin | np | 04:27 |
*** hongbin has quit IRC | 04:27 | |
*** shu-mutou has joined #openstack-zun | 04:31 | |
*** adisky_ has joined #openstack-zun | 04:42 | |
*** vikasc has quit IRC | 04:51 | |
*** zhurong has joined #openstack-zun | 04:55 | |
openstackgerrit | Shu Muto proposed openstack/zun-ui master: Add console tab into details view https://review.openstack.org/445870 | 05:44 |
openstackgerrit | Merged openstack/python-zunclient master: Consolidate websocket attach code https://review.openstack.org/450042 | 05:58 |
*** caowei has joined #openstack-zun | 06:08 | |
openstackgerrit | feng.shengqin proposed openstack/zun master: Check the signal parameter of kill https://review.openstack.org/443461 | 06:13 |
openstackgerrit | Shu Muto proposed openstack/zun-ui master: Add 'run' attribute to create action https://review.openstack.org/450582 | 06:33 |
openstackgerrit | Shu Muto proposed openstack/zun-ui master: Add 'interaction' attribute into creation dialog https://review.openstack.org/450591 | 07:09 |
openstackgerrit | Shu Muto proposed openstack/zun-ui master: Add console tab into details view https://review.openstack.org/445870 | 08:10 |
*** Shunli has quit IRC | 08:17 | |
*** pksingh has joined #openstack-zun | 08:20 | |
openstackgerrit | Shu Muto proposed openstack/zun-ui master: Add 'run' attribute to create action https://review.openstack.org/450582 | 08:27 |
openstackgerrit | Shu Muto proposed openstack/zun-ui master: Add 'interaction' attribute into creation dialog https://review.openstack.org/450591 | 08:28 |
openstackgerrit | feng.shengqin proposed openstack/python-zunclient master: Make "command" parameter as positional https://review.openstack.org/450647 | 08:57 |
*** yatinkarel has quit IRC | 09:20 | |
*** yatinkarel has joined #openstack-zun | 09:33 | |
*** yatinkarel has quit IRC | 10:02 | |
*** mkrai has quit IRC | 10:04 | |
*** shu-mutou is now known as shu-mutou-AWAY | 10:10 | |
*** mkrai has joined #openstack-zun | 10:15 | |
*** yatinkarel has joined #openstack-zun | 10:16 | |
*** zhurong has quit IRC | 10:20 | |
*** yanyanhu has quit IRC | 10:25 | |
*** zhurong has joined #openstack-zun | 10:28 | |
*** pksingh has quit IRC | 10:33 | |
*** kevinz has quit IRC | 10:33 | |
*** zhurong has quit IRC | 11:25 | |
openstackgerrit | feng.shengqin proposed openstack/python-zunclient master: Support to kill multi-containers percommand by osc https://review.openstack.org/450730 | 11:30 |
*** openstackgerrit has quit IRC | 11:33 | |
*** openstackgerrit has joined #openstack-zun | 12:05 | |
openstackgerrit | feng.shengqin proposed openstack/python-zunclient master: List command in osc supports --all-tenants https://review.openstack.org/450744 | 12:05 |
*** kevinz has joined #openstack-zun | 12:28 | |
*** kevinz has quit IRC | 12:38 | |
*** kevinz has joined #openstack-zun | 12:38 | |
*** caowei has quit IRC | 12:42 | |
*** lakerzhou has joined #openstack-zun | 13:10 | |
lakerzhou | Hi mkrai, are you online? | 13:28 |
*** jwcroppe has quit IRC | 13:28 | |
*** jwcroppe has joined #openstack-zun | 13:42 | |
*** hongbin has joined #openstack-zun | 14:01 | |
openstackgerrit | Hongbin Lu proposed openstack/zun master: Remove the duplicated config sqlite_db https://review.openstack.org/450838 | 15:11 |
*** kevinz has quit IRC | 15:24 | |
*** flwang has quit IRC | 16:17 | |
*** flwang has joined #openstack-zun | 16:29 | |
openstackgerrit | Merged openstack/zun master: Remove the duplicated config sqlite_db https://review.openstack.org/450838 | 16:51 |
*** diga has quit IRC | 16:52 | |
*** ykuo_ has quit IRC | 20:43 | |
openstackgerrit | Merged openstack/zun master: list_containers which are created by zun https://review.openstack.org/450123 | 20:45 |
*** ykuo_ has joined #openstack-zun | 20:54 | |
*** lakerzhou has quit IRC | 21:32 | |
*** jwcroppe has quit IRC | 22:49 | |
*** jwcroppe has joined #openstack-zun | 22:49 | |
*** jwcroppe has quit IRC | 22:50 | |
*** jwcroppe has joined #openstack-zun | 22:51 | |
*** jwcroppe has quit IRC | 22:56 | |
*** jwcroppe has joined #openstack-zun | 23:22 | |
*** catintheroof has joined #openstack-zun | 23:37 |
Generated by irclog2html.py 2.14.0 by Marius Gedminas - find it at mg.pov.lt!